diff --git a/compat.php b/compat.php index 29f96236b..b2f6bd344 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; + } + } }