1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-15 23:15:57 +00:00

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

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;
}
}
}