corrected the normalizer
This commit is contained in:
parent
8df22f0030
commit
d520226c87
|
|
@ -602,7 +602,7 @@
|
|||
|
||||
if ( !function_exists('normalize_path')) {
|
||||
function normalize_path($path) {
|
||||
return str_replace(DIRECTORY_SEPARATOR, '\\', $path);
|
||||
return str_replace(array('/','\\'), DIRECTORY_SEPARATOR, $path);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue