Bug 276617 Cookie Exceptions cannot prompt for Invalid Hostname

p=me r=mconnor
This commit is contained in:
bugzilla%arlen.demon.co.uk 2004-12-31 18:43:08 +00:00
Родитель 1183b38867
Коммит 5682f325c3
1 изменённых файлов: 6 добавлений и 3 удалений

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

@ -78,9 +78,12 @@ var gPermissionManager = {
} catch(ex) {
var promptService = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
.getService(Components.interfaces.nsIPromptService);
var message = stringBundle.getString("invalidURI");
var title = stringBundle.getString("invalidURITitle");
promptservice.alert(window,title,message);
var message = this._bundle.getString("invalidURI");
var title = this._bundle.getString("invalidURITitle");
promptService.alert(window, title, message);
textbox.value = "";
textbox.focus();
return;
}
// we need this whether the perm exists or not