1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 06:47:58 +01:00

declare undeclared variable url

This commit is contained in:
Doug Kearns
2007-07-01 13:04:52 +00:00
parent cccd74c487
commit 0988b9815a

View File

@@ -980,7 +980,7 @@ function openURLsInNewTab(str, activate)
var firsttab = getBrowser().addTab(urls[0]);
if (activate)
getBrowser().selectedTab = firsttab;
for (url=1; url < urls.length; url++)
for (var url = 1; url < urls.length; url++)
gBrowser.addTab(urls[url]);
return firsttab;