From: Robin Appelman Date: Sat, 4 Jun 2011 16:34:15 +0000 (+0200) Subject: fix incorrect variable name in libfilestorage X-Git-Tag: v3.0~267^2~555 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=d8ba312679a9bdeedbae5cf64fe05874f1108620;p=nextcloud-server.git fix incorrect variable name in libfilestorage --- diff --git a/lib/filestorage.php b/lib/filestorage.php index d4db77f2c89..157e44ff298 100644 --- a/lib/filestorage.php +++ b/lib/filestorage.php @@ -386,7 +386,7 @@ class OC_FILESTORAGE_LOCAL extends OC_FILESTORAGE{ } } if($return=rmdir($dir)){ - $this->clearFolderSizeCache($path); + $this->clearFolderSizeCache($dir); } return $return; }