Fix for bug 90028. During a forward, we need to put back the "Re:" in the subject if the flag MSG_FLAG_HAS_RE is set. Patch provided by Denis Antrushin <adu@sparc.spb.su>. R=ducarroz, SR=bienvenu

This commit is contained in:
ducarroz%netscape.com 2001-10-09 22:48:32 +00:00
Родитель 861b371175
Коммит b19306819c
1 изменённых файлов: 5 добавлений и 1 удалений

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

@ -1286,8 +1286,12 @@ nsresult nsMsgCompose::CreateMessage(const char * originalMsgURI,
}
case nsIMsgCompType::ForwardAsAttachment:
{
PRUint32 flags;
msgHdr->GetFlags(&flags);
subjectStr.Append("[Fwd: ");
if (flags & MSG_FLAG_HAS_RE)
subjectStr.Append("Re: ");
subjectStr.Append(subject);
subjectStr.Append("]");