bug 119812, js error in cookie manager dialog, r=sgehani, sr=alecf

This commit is contained in:
morse%netscape.com 2002-02-16 01:30:04 +00:00
Родитель b434151a98
Коммит cfa42c9421
1 изменённых файлов: 7 добавлений и 0 удалений

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

@ -237,6 +237,13 @@ function CookieSelected() {
}
var idx = selections[0];
if (idx >= cookies.length) {
// Something got out of synch. See bug 119812 for details
dump("Outliner and viewer state are out of sync! " +
"Help us figure out the problem in bug 119812");
return;
}
var props = [
{id: "ifl_name", value: cookies[idx].name},
{id: "ifl_value", value: cookies[idx].value},