Bug 363422 Fix confirmEx parameters (broken "delete all cookies" button)

r=neil
This commit is contained in:
cst%yecc.com 2006-12-13 01:13:01 +00:00
Родитель 1cd965fc5d
Коммит 4fae130ba8
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -357,7 +357,7 @@ function DeleteAllCookies() {
(promptservice.BUTTON_TITLE_CANCEL * promptservice.BUTTON_POS_1) +
promptservice.BUTTON_POS_1_DEFAULT)
var yes = cookieBundle.getString("deleteAllCookiesYes");
if (promptservice.confirmEx(window, title, msg, flags, yes, null, null, {value:0}) == 1)
if (promptservice.confirmEx(window, title, msg, flags, yes, null, null, null, {value:0}) == 1)
return;
ClearCookieProperties();