diff options
author | Robin Appelman <icewind1991@gmail.com> | 2011-06-04 18:34:15 +0200 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2011-06-04 18:34:15 +0200 |
commit | d8ba312679a9bdeedbae5cf64fe05874f1108620 (patch) | |
tree | 5578961f7e658b3295aacf34c2b673eded416cac /lib | |
parent | 815f2390142e0a9a73df8fc2f726d4799886f2d4 (diff) | |
download | nextcloud-server-d8ba312679a9bdeedbae5cf64fe05874f1108620.tar.gz nextcloud-server-d8ba312679a9bdeedbae5cf64fe05874f1108620.zip |
fix incorrect variable name in libfilestorage
Diffstat (limited to 'lib')
-rw-r--r-- | lib/filestorage.php | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |