A user who wants to see the security confirmation (as opposed to alert) dialogs shouldn't need to check the checkbox every time (for Firefox values of default prefs). b=245655 r+sr=bryner

This commit is contained in:
dbaron%dbaron.org 2004-08-27 22:10:26 +00:00
Родитель 4aa8cd6458
Коммит ce98b93dff
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -303,7 +303,7 @@ nsSecurityWarningDialogs::ConfirmDialog(nsIInterfaceRequestor *ctx, const char *
if (!prefValue && prefName != nsnull) {
mPref->SetBoolPref(prefName, PR_FALSE);
} else if (prefValue && showOnce) {
mPref->SetBoolPref(showOncePref.get(), PR_TRUE);
mPref->SetBoolPref(showOncePref.get(), PR_FALSE);
}
return rv;