diff options
author | Felix Moeller <mail@felixmoeller.de> | 2012-11-04 18:28:29 +0100 |
---|---|---|
committer | Felix Moeller <mail@felixmoeller.de> | 2012-11-04 18:28:29 +0100 |
commit | 0e70ea9d8baa449ee3c8309f2b6a59ce06a55926 (patch) | |
tree | 538076bdc23be31e88ba012aa4f26448c8fd1ca3 /apps/files_encryption | |
parent | 1205749f8cec19c30c9f58f7f97832fac9a4c502 (diff) | |
download | nextcloud-server-0e70ea9d8baa449ee3c8309f2b6a59ce06a55926.tar.gz nextcloud-server-0e70ea9d8baa449ee3c8309f2b6a59ce06a55926.zip |
Checkstyle: Fix the last 25 NoSpaceAfterComma
Diffstat (limited to 'apps/files_encryption')
-rw-r--r-- | apps/files_encryption/lib/proxy.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_encryption/lib/proxy.php b/apps/files_encryption/lib/proxy.php index cacf7d7920a..4a390013d20 100644 --- a/apps/files_encryption/lib/proxy.php +++ b/apps/files_encryption/lib/proxy.php @@ -92,7 +92,7 @@ class OC_FileProxy_Encryption extends OC_FileProxy{ }elseif(self::shouldEncrypt($path) and $meta['mode']!='r' and $meta['mode']!='rb') { if(OC_Filesystem::file_exists($path) and OC_Filesystem::filesize($path)>0) { //first encrypt the target file so we don't end up with a half encrypted file - OCP\Util::writeLog('files_encryption','Decrypting '.$path.' before writing', OCP\Util::DEBUG); + OCP\Util::writeLog('files_encryption', 'Decrypting '.$path.' before writing', OCP\Util::DEBUG); $tmp=fopen('php://temp'); OCP\Files::streamCopy($result, $tmp); fclose($result); |