Update of /cvsroot/squirrelmail/squirrelmail/functions
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22862
Modified Files:
mime.php
Log Message:
extra sanitizing was added in B and Q header decoding, when SquirrelMail tried
to
convert header to user's character set (#1460638).
Index: mime.php
===================================================================
RCS file: /cvsroot/squirrelmail/squirrelmail/functions/mime.php,v
retrieving revision 1.368
retrieving revision 1.369
diff -u -w -r1.368 -r1.369
--- mime.php 5 Apr 2006 00:22:01 -0000 1.368
+++ mime.php 24 Apr 2006 17:47:58 -0000 1.369
@@ -759,7 +759,7 @@
/* convert string to different charset,
* if functions asks for it (usually in compose)
*/
- $ret .=
charset_convert($res[2],$replace,$default_charset);
+ $ret .=
charset_convert($res[2],$replace,$default_charset,$htmlsave);
} else {
// convert string to html codes in order to
display it
$ret .= charset_decode($res[2],$replace);
@@ -780,7 +780,7 @@
/* convert string to different charset,
* if functions asks for it (usually in compose)
*/
- $replace = charset_convert($res[2],
$replace,$default_charset);
+ $replace = charset_convert($res[2],
$replace,$default_charset,$htmlsave);
} else {
// convert string to html codes in order to
display it
$replace = charset_decode($res[2], $replace);
-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
|