[-] BO : function str2url fixed #PSCFV-4017

This commit is contained in:
dMetzger
2012-09-12 12:21:49 +00:00
parent 12469caa60
commit 2d10dd87e1
+2 -1
View File
@@ -981,7 +981,8 @@ class ToolsCore
// If it was not possible to lowercase the string with mb_strtolower, we do it after the transformations.
// This way we lose fewer special chars.
$str = strtolower($str);
if (!function_exists('mb_strtolower'))
$str = strtolower($str);
return $str;
}