add dummy plug for mb_strtolower

This commit is contained in:
Andrew Dolgov 2007-05-19 06:09:25 +01:00
parent 7e43ad58a6
commit de5b8ebcda
1 changed files with 7 additions and 1 deletions

View File

@ -94,4 +94,10 @@ if (!function_exists('mb_substr'))
return $i;
}
if (!function_exists('mb_strtolower')) {
function mb_strtolower($msg, $encoding) {
return $msg;
}
}
}