109560 - edit menu in history is broken. r=ben sr=hewitt

This commit is contained in:
blakeross%telocity.com 2006-07-27 14:55:28 +00:00
Родитель 0d0446b424
Коммит 67580819a3
1 изменённых файлов: 2 добавлений и 4 удалений

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

@ -168,8 +168,7 @@ nsHistoryController.prototype =
} else {
stringId = "deleteHostNoSelection";
}
text = gHistoryBundle.stringBundle.formatStringFromName(stringId,
[ gLastHostname ], 1);
text = gHistoryBundle.getFormattedString(stringId, [ gLastHostname ]);
gDeleteByHostname.setAttribute("label", text);
break;
case "cmd_deleteByDomain":
@ -179,8 +178,7 @@ nsHistoryController.prototype =
} else {
stringId = "deleteDomainNoSelection";
}
text = gHistoryBundle.stringBundle.formatStringFromName(stringId,
[ gLastDomain ], 1);
text = gHistoryBundle.getFormattedString(stringId, [ gLastDomain ]);
gDeleteByDomain.setAttribute("label", text);
}
return enabled;