diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2012-09-10 12:32:49 +0300 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2012-09-10 12:32:49 +0300 |
commit | c6cd1b77d31be34c164e7c647507929941266d76 (patch) | |
tree | bd3d81ec81c8ddd989c811fe9530660c3439ba22 /lib/filecache | |
parent | 5721bd27861f7119fd51711583ca68b4bcce42bc (diff) | |
download | nextcloud-server-c6cd1b77d31be34c164e7c647507929941266d76.tar.gz nextcloud-server-c6cd1b77d31be34c164e7c647507929941266d76.zip |
Respect coding style
Diffstat (limited to 'lib/filecache')
-rw-r--r-- | lib/filecache/cached.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/filecache/cached.php b/lib/filecache/cached.php index 261bd2f572b..4e8ff23793e 100644 --- a/lib/filecache/cached.php +++ b/lib/filecache/cached.php @@ -22,7 +22,7 @@ class OC_FileCache_Cached{ $result=$query->execute(array(md5($path)))->fetchRow(); if(is_array($result)) { if(isset(self::$savedData[$path])) { - $result=array_merge($result,self::$savedData[$path]); + $result=array_merge($result, self::$savedData[$path]); } return $result; }else{ @@ -54,7 +54,7 @@ class OC_FileCache_Cached{ if($root===false) { $root=OC_Filesystem::getRoot(); } - $parent=OC_FileCache::getId($path,$root); + $parent=OC_FileCache::getId($path, $root); if($parent==-1) { return array(); } @@ -63,7 +63,7 @@ class OC_FileCache_Cached{ if(is_array($result)) { return $result; }else{ - OC_Log::write('files','getFolderContent(): file not found in cache ('.$path.')',OC_Log::DEBUG); + OC_Log::write('files', 'getFolderContent(): file not found in cache ('.$path.')', OC_Log::DEBUG); return false; } } |