summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorRobin Appelman <icewind1991@gmail.com>2011-06-04 18:34:15 +0200
committerRobin Appelman <icewind1991@gmail.com>2011-06-04 18:34:15 +0200
commitd8ba312679a9bdeedbae5cf64fe05874f1108620 (patch)
tree5578961f7e658b3295aacf34c2b673eded416cac /lib
parent815f2390142e0a9a73df8fc2f726d4799886f2d4 (diff)
downloadnextcloud-server-d8ba312679a9bdeedbae5cf64fe05874f1108620.tar.gz
nextcloud-server-d8ba312679a9bdeedbae5cf64fe05874f1108620.zip
fix incorrect variable name in libfilestorage
Diffstat (limited to 'lib')
-rw-r--r--lib/filestorage.php2
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;
}