From 5341ce66a04ce45262d9acac3e8b2324b716803c Mon Sep 17 00:00:00 2001 From: tokul Date: Sun, 13 Feb 2005 12:00:59 +0000 Subject: [PATCH] adding option that disables default_charset test in charset_decode function. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@8846 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/i18n.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/functions/i18n.php b/functions/i18n.php index 676f2720..8eb42785 100644 --- a/functions/i18n.php +++ b/functions/i18n.php @@ -104,9 +104,11 @@ function sq_setlocale($category,$locale) { * * @param string $charset * @param string $string Text to be decoded + * @param boolean $force_decode converts string to html without $charset!=$default_charset check. + * Argument is available since 1.5.1. * @return string decoded string */ -function charset_decode ($charset, $string) { +function charset_decode ($charset, $string, $force_decode=false) { global $languages, $squirrelmail_language, $default_charset; global $use_php_recode, $use_php_iconv, $aggressive_decoding; @@ -126,7 +128,7 @@ function charset_decode ($charset, $string) { $use_php_iconv=false; } // Don't do conversion if charset is the same. - if ( $charset == strtolower($default_charset) ) + if ( ! $force_decode && $charset == strtolower($default_charset) ) return htmlspecialchars($string); // catch iso-8859-8-i thing @@ -225,7 +227,7 @@ function charset_encode($string,$charset,$htmlencode=true) { * @return string converted string */ function charset_convert($in_charset,$string,$out_charset,$htmlencode=true) { - $string=charset_decode($in_charset,$string); + $string=charset_decode($in_charset,$string,true); $string=charset_encode($string,$out_charset,$htmlencode); return $string; } -- 2.25.1