Normalize path before calling removeETagPropertyForPath

This should also fix the dirname problem on windows
This commit is contained in:
Bart Visscher 2012-09-14 23:15:52 +02:00
parent 7811fa4faf
commit ab33578add
1 changed files with 1 additions and 0 deletions

View File

@ -527,6 +527,7 @@ class OC_Filesystem{
} else {
$path=$params['oldpath'];
}
$path = self::normalizePath($path);
OC_Connector_Sabre_Node::removeETagPropertyForPath($path);
}