// Fix Tools::toCamelCase()

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@13156 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
rMalie
2012-02-09 09:13:11 +00:00
parent 1cd38d2621
commit bf6b6cd5ca
+1 -1
View File
@@ -1381,7 +1381,7 @@ class ToolsCore
$str = strtolower($str);
if ($capitaliseFirstChar)
$str = ucfirst($str);
return preg_replace_callback('/_([a-z])/', create_function('$c', 'return strtoupper($c[1]);'), $str);
return preg_replace_callback('/_+([a-z])/', create_function('$c', 'return strtoupper($c[1]);'), $str);
}
/**