[If you get this error:] Fatal error: Call to undefined function: mb_strtolower() in ????.php on line ??
The PHP mbstring extension, which is required to handle international character sets, is not available on your server. Check your PHP configuration and make sure that PHP has been compiled with --enable-mbstring.
If this is not possible replace the line with:
if (function_exists("mb_strtolower")) { $imageName = mb_strtolower($imageName); } else { $imageName = strtolower($imageName); }
I will add this to the next update too.
Best, Michael
|