fix incorrect variable name in libfilestorage

This commit is contained in:
Robin Appelman 2011-06-04 18:34:15 +02:00
parent 815f239014
commit d8ba312679
1 changed files with 1 additions and 1 deletions

View File

@ -386,7 +386,7 @@ class OC_FILESTORAGE_LOCAL extends OC_FILESTORAGE{
}
}
if($return=rmdir($dir)){
$this->clearFolderSizeCache($path);
$this->clearFolderSizeCache($dir);
}
return $return;
}