fixed bug 22918 - cannot send page with url contains spaces; needs to escape the url; r=rhp

This commit is contained in:
jefft%netscape.com 2000-01-03 23:12:42 +00:00
parent 1d1d7c9022
commit 543a379987

View File

@ -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()