From db5abc6c211d78ad80b716ddef11eabe5e32f137 Mon Sep 17 00:00:00 2001 From: alecpl Date: Mon, 4 May 2009 08:03:48 +0000 Subject: - ereg -> preg --- program/lib/icl_commons.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'program/lib/icl_commons.inc') 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); -- cgit v1.2.3