Bug 361911: Unable to install updates on startup after dismissing notifications. r=robstrong

This commit is contained in:
dtownsend@oxymoronical.com 2008-03-06 17:59:42 -08:00
Родитель 23b794404d
Коммит eddaaed8a4
1 изменённых файлов: 5 добавлений и 2 удалений

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

@ -2140,8 +2140,11 @@ function installUpdatesAll() {
if (!isXPInstallEnabled())
return;
if (gUpdatesOnly)
document.getElementById("addonsMsg").removeCurrentNotification();
if (gUpdatesOnly) {
var notifications = document.getElementById("addonsMsg");
if (notifications.currentNotification)
notifications.removeCurrentNotification();
}
var items = [];
var children = gExtensionsView.children;