From 63ffe33c016e3f5a016d4ea961b12caa9c5b20c3 Mon Sep 17 00:00:00 2001 From: alecpl Date: Mon, 14 Dec 2009 07:36:19 +0000 Subject: - fix empty strings handling in rc_utf8_clean() --- program/include/rcube_shared.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'program/include') diff --git a/program/include/rcube_shared.inc b/program/include/rcube_shared.inc index 547174b8a..fbab455c6 100644 --- a/program/include/rcube_shared.inc +++ b/program/include/rcube_shared.inc @@ -512,10 +512,10 @@ function rc_utf8_clean($input) return $input; // iconv/mbstring are much faster (especially with long strings) - if (function_exists('mb_convert_encoding') && ($res = mb_convert_encoding($input, 'UTF8', 'UTF8'))) + if (function_exists('mb_convert_encoding') && ($res = mb_convert_encoding($input, 'UTF8', 'UTF8')) !== false) return $res; - if (function_exists('iconv') && ($res = iconv('UTF8', 'UTF8//IGNORE', $input))) + if (function_exists('iconv') && ($res = iconv('UTF8', 'UTF8//IGNORE', $input)) !== false) return $res; $regexp = '/^('. @@ -573,7 +573,7 @@ function rc_utf8_clean($input) function json_serialize($input) { $input = rc_utf8_clean($input); - + return json_encode($input); } -- cgit v1.2.3