diff options
author | Bart Visscher <bartv@thisnet.nl> | 2013-01-18 16:38:36 +0100 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2013-01-18 16:38:40 +0100 |
commit | 9ffd4197aeee96bb457d5345ba0e87a635f21f1c (patch) | |
tree | 5f07c669c0240f8bc27f2e9d97dd4443c53e70c4 | |
parent | d2c5f9bec7a86500913ebd20b767146444c71cca (diff) | |
download | nextcloud-server-9ffd4197aeee96bb457d5345ba0e87a635f21f1c.tar.gz nextcloud-server-9ffd4197aeee96bb457d5345ba0e87a635f21f1c.zip |
Fix wrong word in comment
-rw-r--r-- | lib/filecache.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/filecache.php b/lib/filecache.php index bde70757d31..2f4a6daf216 100644 --- a/lib/filecache.php +++ b/lib/filecache.php @@ -354,7 +354,7 @@ class OC_FileCache{ public static function increaseSize($path, $sizeDiff, $root=false) { if($sizeDiff==0) return; $item = OC_FileCache_Cached::get($path); - //stop walking up the filetree if we hit a non-folder or reached to root folder + //stop walking up the filetree if we hit a non-folder or reached the root folder if($path == '/' || $path=='' || $item['mimetype'] !== 'httpd/unix-directory') { return; } |