Bug 132257 Inserting a link to a [network][image] file into a message inserts the physical file! regression fix for bug 352317 and bug 352341

p=me r=neil sr=bienvenu
This commit is contained in:
bugzilla%arlen.demon.co.uk 2006-09-12 23:25:20 +00:00
Родитель 395dc9eb8b
Коммит 13ab0d10de
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -1463,7 +1463,8 @@ nsMsgComposeAndSend::GetEmbeddedObjectInfo(nsIDOMNode *node, nsMsgAttachmentData
{
if (attributeValue.LowerCaseEqualsLiteral("true"))
return NS_OK;
forceToBeAttached = PR_TRUE;
if (attributeValue.LowerCaseEqualsLiteral("false"))
forceToBeAttached = PR_TRUE;
}
}