corrected the normalizer
This commit is contained in:
parent
4efec3ac0b
commit
c9197b4151
|
|
@ -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