summaryrefslogtreecommitdiffstats
path: root/lib/filecache.php
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2012-12-14 23:38:38 +0100
committerBart Visscher <bartv@thisnet.nl>2012-12-15 00:43:46 +0100
commit2ef2dc4ddabc8b5d86d7a9a5a936ecf3901615cc (patch)
treecab9483141ee8fee237abfdf9550117c1e98296f /lib/filecache.php
parent85bd28c5081e7c2fea236c4528c23be283aa7350 (diff)
downloadnextcloud-server-2ef2dc4ddabc8b5d86d7a9a5a936ecf3901615cc.tar.gz
nextcloud-server-2ef2dc4ddabc8b5d86d7a9a5a936ecf3901615cc.zip
Fix "There must be a single space between the closing parenthesis and the opening brace"
Diffstat (limited to 'lib/filecache.php')
-rw-r--r--lib/filecache.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/filecache.php b/lib/filecache.php
index bbf55bc1f86..c3256c783e6 100644
--- a/lib/filecache.php
+++ b/lib/filecache.php
@@ -355,7 +355,7 @@ class OC_FileCache{
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
- if($path == '/' || $path=='' || $item['mimetype'] !== 'httpd/unix-directory'){
+ if($path == '/' || $path=='' || $item['mimetype'] !== 'httpd/unix-directory') {
return;
}
$id = $item['id'];
@@ -363,13 +363,13 @@ class OC_FileCache{
$query=OC_DB::prepare('UPDATE `*PREFIX*fscache` SET `size`=`size`+? WHERE `id`=?');
$query->execute(array($sizeDiff, $id));
$path=dirname($path);
- if($path == '' or $path =='/'){
+ if($path == '' or $path =='/') {
return;
}
$parent = OC_FileCache_Cached::get($path);
$id = $parent['id'];
//stop walking up the filetree if we hit a non-folder
- if($parent['mimetype'] !== 'httpd/unix-directory'){
+ if($parent['mimetype'] !== 'httpd/unix-directory') {
return;
}
}