diff --git a/htdocs/core/class/translate.class.php b/htdocs/core/class/translate.class.php index 9569a9c2731..a3e69c61e15 100644 --- a/htdocs/core/class/translate.class.php +++ b/htdocs/core/class/translate.class.php @@ -786,6 +786,7 @@ class Translate } if ($pagecodefrom == 'UTF-8' && $this->charset_output == 'ISO-8859-1') { $str = utf8_decode(str_replace('€', chr(128), $str)); + // TODO Replace with iconv("UTF-8", "ISO-8859-1", str_replace('€', chr(128), $str)); ? } return $str; }