From 43154b3e1b734e4b57ba42a21430ee916967a190 Mon Sep 17 00:00:00 2001 From: Antoine Pitrou <pitrou@free.fr> Date: Sat, 26 Apr 2003 03:17:10 +0000 Subject: [PATCH] =?UTF-8?q?bug=20si=20charset=20non=20support=C3=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ecrire/inc_charsets.php3 | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/ecrire/inc_charsets.php3 b/ecrire/inc_charsets.php3 index bf8525f100..febf082a14 100644 --- a/ecrire/inc_charsets.php3 +++ b/ecrire/inc_charsets.php3 @@ -291,12 +291,14 @@ function charset2unicode($texte, $charset='AUTO', $forcer = false) { $trans[$charset][chr($key)] = '&#'.$val.';'; } } - if ($GLOBALS['flag_strtr2']) - $texte = strtr($texte, $trans[$charset]); - else { - reset($trans[$charset]); - while (list($from, $to) = each($trans[$charset])) { - $texte = str_replace($from, $to, $texte); + if ($trans[$charset]) { + if ($GLOBALS['flag_strtr2']) + $texte = strtr($texte, $trans[$charset]); + else { + reset($trans[$charset]); + while (list($from, $to) = each($trans[$charset])) { + $texte = str_replace($from, $to, $texte); + } } } return $texte; -- GitLab