зеркало из https://github.com/mozilla/pjs.git
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:
Родитель
861b371175
Коммит
b19306819c
|
@ -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("]");
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче