]> source.dussan.org Git - nextcloud-server.git/commitdiff
fix incorrect variable name in libfilestorage
authorRobin Appelman <icewind1991@gmail.com>
Sat, 4 Jun 2011 16:34:15 +0000 (18:34 +0200)
committerRobin Appelman <icewind1991@gmail.com>
Sat, 4 Jun 2011 16:34:15 +0000 (18:34 +0200)
lib/filestorage.php

index d4db77f2c89762124279f53736e4818f33cd202e..157e44ff298dc207c1e684ffc5e081957988087e 100644 (file)
@@ -386,7 +386,7 @@ class OC_FILESTORAGE_LOCAL extends OC_FILESTORAGE{
                        }
                }
                if($return=rmdir($dir)){
-                       $this->clearFolderSizeCache($path);
+                       $this->clearFolderSizeCache($dir);
                }
                return $return;
        }