fed to compose.php.
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@8884
7612ce4b-ef26-0410-bec9-
ea0150e637f0
option includes.
- Fixed bug #1124764, view unsafe images inside printer friendly view.
- Fixed bug #1032366, remove NUL characters in text attachments on sent.
+ - URL Encode required for string being passed in mailto: links to pass on
+ additional values (cc, body, subject etc).
Version 1.5.0
--------------------
}
if($mailto != '') {
$redirect_url = $location . '/webmail.php?right_frame=compose.php&mailto=';
- $redirect_url .= $mailto;
+ $redirect_url .= urlencode($mailto);
}
/* Write session data and send them off to the appropriate page. */
sqsession_register($attachment_common_types, 'attachment_common_types');
}
-?>
\ No newline at end of file
+?>