зеркало из https://github.com/mozilla/pjs.git
fixed bug 22918 - cannot send page with url contains spaces; needs to escape the url; r=rhp
This commit is contained in:
Родитель
700d099a28
Коммит
5f7e3db3fc
|
@ -1204,7 +1204,7 @@ function RevealSearchPanel()
|
|||
function BrowserSendPage(pageUrl, pageTitle)
|
||||
{
|
||||
window.openDialog( "chrome://messengercompose/content/", "_blank", "chrome,all,dialog=no",
|
||||
"attachment=" + pageUrl + ",body=" + pageUrl + ",subject='" + pageTitle + "'");
|
||||
"attachment=" + escape(pageUrl) + ",body=" + pageUrl + ",subject='" + pageTitle + "'");
|
||||
}
|
||||
|
||||
function BrowserViewSource()
|
||||
|
|
Загрузка…
Ссылка в новой задаче