X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=include%2Flanguages.php;h=c6b93a5a9e1ade243c2482778f2d0880adac1967;hp=c057c34572a25b8dee812d59d795caca8cc8b365;hb=b37e457fda0baaf0253ba69f0e5cbdd4845ce242;hpb=69022e980ccad1e1403637d31ca24857b9f2055b diff --git a/include/languages.php b/include/languages.php index c057c345..c6b93a5a 100644 --- a/include/languages.php +++ b/include/languages.php @@ -14,7 +14,7 @@ * existing PHP installation and implements fallback functions when required * functions are not available. Scripts in functions/ directory should not * setup anything when they are loaded. - * @copyright © 1999-2006 The SquirrelMail Project Team + * @copyright © 1999-2007 The SquirrelMail Project Team * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @version $Id$ * @package squirrelmail @@ -191,7 +191,7 @@ function charset_decode ($charset, $string, $force_decode=false, $save_html=fals $decode=fixcharset($charset); $decodefile=SM_PATH . 'functions/decode/' . $decode . '.php'; - if (file_exists($decodefile)) { + if ($decode != 'index' && file_exists($decodefile)) { include_once($decodefile); // send $save_html argument to decoding function. needed for iso-2022-xx decoding. $ret = call_user_func('charset_decode_'.$decode, $string, $save_html); @@ -214,7 +214,7 @@ function charset_encode($string,$charset,$htmlencode=true) { $encode=fixcharset($charset); $encodefile=SM_PATH . 'functions/encode/' . $encode . '.php'; - if (file_exists($encodefile)) { + if ($encode != 'index' && file_exists($encodefile)) { include_once($encodefile); $ret = call_user_func('charset_encode_'.$encode, $string); } elseif(file_exists(SM_PATH . 'functions/encode/us_ascii.php')) {