fix 349557 handling of mime encoded subject and author in mail history forward/back menu items, sr=sspitzer

This commit is contained in:
bienvenu%nventure.com 2006-08-22 00:04:09 +00:00
Родитель d63182feb0
Коммит 7490c06a64
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -777,9 +777,9 @@ function populateHistoryMenu(menuPopup, isBackMenu)
var msgHdr = messenger.msgHdrFromURI(historyArray[i]);
if (!IsCurrentLoadedFolder(folder))
menuText = folder.prettyName + " - ";
menuText += msgHdr.subject;
menuText += msgHdr.mime2DecodedSubject;
menuText += ":";
menuText += msgHdr.author;
menuText += msgHdr.mime2DecodedAuthor;
newMenuItem = document.createElement('menuitem');
newMenuItem.setAttribute('label', menuText);
relPos += isBackMenu ? -1 : 1;