fix OC_Filesystem::isValidPath when using \ instead of / in paths

remotes/origin/stable5
Robin Appelman 2012-11-02 19:56:34 +07:00
parent d9e9761099
commit a1c37d4be5
1 changed files with 1 additions and 0 deletions

@ -396,6 +396,7 @@ class OC_Filesystem{
* @return bool
*/
static public function isValidPath($path) {
$path = self::normalizePath($path);
if(!$path || $path[0]!=='/') {
$path='/'.$path;
}