Happy New Year
[squirrelmail.git] / functions / encode / iso_8859_9.php
index 689a073caaa68f0c60618b1d3da107bc700a51ad..b33c239cbd37bb6e66a9b489cb53563d2475ea7a 100644 (file)
@@ -6,7 +6,7 @@
  * takes a string of unicode entities and converts it to a iso-8859-9 encoded string
  * Unsupported characters are replaced with ?.
  *
- * @copyright © 2004-2006 The SquirrelMail Project Team
+ * @copyright 2004-2020 The SquirrelMail Project Team
  * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  * @version $Id$
  * @package squirrelmail
@@ -22,8 +22,7 @@ function charset_encode_iso_8859_9 ($string) {
    // don't run encoding function, if there is no encoded characters
    if (! preg_match("'&#[0-9]+;'",$string) ) return $string;
 
-    $string=preg_replace("/&#([0-9]+);/e","unicodetoiso88599('\\1')",$string);
-    // $string=preg_replace("/&#[xX]([0-9A-F]+);/e","unicodetoiso88599(hexdec('\\1'))",$string);
+    $string=preg_replace_callback("/&#([0-9]+);/",'unicodetoiso88599',$string);
 
     return $string;
 }
@@ -36,10 +35,11 @@ function charset_encode_iso_8859_9 ($string) {
  * Don't use it or make sure, that functions/encode/iso_8859_9.php is
  * included.
  *
- * @param int $var decimal unicode value
+ * @param array $matches array with first element a decimal unicode value
  * @return string iso-8859-9 character
  */
-function unicodetoiso88599($var) {
+function unicodetoiso88599($matches) {
+    $var = $matches[1];
 
     $iso88599chars=array('160' => "\xA0",
                          '161' => "\xA1",
@@ -146,4 +146,3 @@ function unicodetoiso88599($var) {
     }
     return $ret;
 }
-?>
\ No newline at end of file