Use the right array lenght in the fix for bug 365100.

This commit is contained in:
mozilla.mano%sent.com 2006-12-28 21:26:11 +00:00
Родитель d53f0a74d5
Коммит 10cc43decb
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1059,7 +1059,7 @@ PlacesController.prototype = {
if (!this._confirmOpenTabs(urlsToOpen.length))
return;
for (var i = 0; i < nodes.length; ++i) {
for (var i = 0; i < urlsToOpen.length; ++i) {
getTopWin().openNewTabWith(urlsToOpen[i], null, null);
}
}