From: Andrew Dolgov Date: Sat, 19 May 2007 05:09:25 +0000 (+0100) Subject: add dummy plug for mb_strtolower X-Git-Tag: 1.2.11~18 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=de5b8ebcdacb441d7011d9d8e281bb0648e6afe1;p=tt-rss.git add dummy plug for mb_strtolower --- diff --git a/compat.php b/compat.php index 29f96236..b2f6bd34 100644 --- a/compat.php +++ b/compat.php @@ -93,5 +93,11 @@ if (!function_exists('mb_substr')) } return $i; - } + } + + if (!function_exists('mb_strtolower')) { + function mb_strtolower($msg, $encoding) { + return $msg; + } + } }