зеркало из https://github.com/mozilla/pjs.git
fix for #193142.
filename lost when saving / opening attachments. caused by my fix for #191817. I accidentally removed a call to escape(). thanks to jshin@mailaps.org for the fix. r/sr=sspitzer, a=asa
This commit is contained in:
Родитель
d97151bee3
Коммит
3f55e72761
|
@ -850,7 +850,7 @@ function saveAttachment(aAttachment)
|
|||
{
|
||||
messenger.saveAttachment(aAttachment.contentType,
|
||||
aAttachment.url,
|
||||
aAttachment.displayName,
|
||||
escape(aAttachment.displayName),
|
||||
aAttachment.messageUri);
|
||||
}
|
||||
|
||||
|
@ -858,7 +858,7 @@ function openAttachment(aAttachment)
|
|||
{
|
||||
messenger.openAttachment(aAttachment.contentType,
|
||||
aAttachment.url,
|
||||
aAttachment.displayName,
|
||||
escape(aAttachment.displayName),
|
||||
aAttachment.messageUri);
|
||||
}
|
||||
|
||||
|
@ -867,7 +867,7 @@ function printAttachment(aAttachment)
|
|||
/* we haven't implemented the ability to print attachments yet...
|
||||
messenger.printAttachment(aAttachment.contentType,
|
||||
aAttachment.url,
|
||||
aAttachment.displayName,
|
||||
escape(aAttachment.displayName),
|
||||
aAttachment.messageUri);
|
||||
*/
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче