1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-21 14:18:00 +01:00

add missing var declaration to urls in openURLs*()

This commit is contained in:
Doug Kearns
2007-05-28 17:09:25 +00:00
parent e834bc7dd7
commit 826ca2ce18

View File

@@ -1304,7 +1304,7 @@ function historyGoToEnd()
////////////////////////////////////////////////////////////////////////
function openURLs(str)
{
urls = stringToURLs(str);
var urls = stringToURLs(str);
if (urls.length == 0)
return false;
@@ -1318,7 +1318,7 @@ function openURLs(str)
function openURLsInNewTab(str, activate)
{
urls = stringToURLs(str);
var urls = stringToURLs(str);
if (urls.length == 0)
return null;