summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--compat.php8
1 files changed, 7 insertions, 1 deletions
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;
+ }
+ }
}