diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2012-09-10 12:25:42 +0300 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2012-09-10 12:25:42 +0300 |
commit | 23f348c99fccb38779985d8cee2c3e7ae7e43e5a (patch) | |
tree | 31e402cc2bd456d6603cdfc40335dd4c589a3597 /lib/cache | |
parent | 87e1a27fde1267921e0b4a025fec96395d83b6c9 (diff) | |
download | nextcloud-server-23f348c99fccb38779985d8cee2c3e7ae7e43e5a.tar.gz nextcloud-server-23f348c99fccb38779985d8cee2c3e7ae7e43e5a.zip |
Respect coding style
Diffstat (limited to 'lib/cache')
-rw-r--r-- | lib/cache/file.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/cache/file.php b/lib/cache/file.php index a4f83f76c94..27d8b19f36e 100644 --- a/lib/cache/file.php +++ b/lib/cache/file.php @@ -22,7 +22,7 @@ class OC_Cache_File{ $this->storage = new OC_FilesystemView('/'.OC_User::getUser().'/'.$subdir); return $this->storage; }else{ - OC_Log::write('core','Can\'t get cache storage, user not logged in', OC_Log::ERROR); + OC_Log::write('core', 'Can\'t get cache storage, user not logged in', OC_Log::ERROR); return false; } } |