summaryrefslogtreecommitdiff
path: root/compat.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-05-19 06:09:25 +0100
committerAndrew Dolgov <[email protected]>2007-05-19 06:09:25 +0100
commitde5b8ebcdacb441d7011d9d8e281bb0648e6afe1 (patch)
tree0fa6ef80dd1926b811260bdd8396140061cd0590 /compat.php
parent7e43ad58a66ccca81b063013b5d45e09f90e1a1c (diff)
add dummy plug for mb_strtolower
Diffstat (limited to 'compat.php')
-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;
+ }
+ }
}