diff options
Diffstat (limited to 'program/lib/icl_commons.inc')
-rw-r--r-- | program/lib/icl_commons.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/lib/icl_commons.inc b/program/lib/icl_commons.inc index 599205178..87eed629f 100644 --- a/program/lib/icl_commons.inc +++ b/program/lib/icl_commons.inc @@ -48,8 +48,8 @@ function iil_utf7_decode($str, $raw=false){ } function iil_utf7_encode($str){ - if (!ereg("[\200-\237]",$str) && !ereg("[\241-\377]",$str)) - return $str; + if (!preg_match('/[\200-\237\241-\377]/', $str)) + return $str; $len = strlen($str); |