summaryrefslogtreecommitdiffstats
path: root/apps/files_encryption
diff options
context:
space:
mode:
authorFelix Moeller <mail@felixmoeller.de>2012-11-04 18:28:29 +0100
committerFelix Moeller <mail@felixmoeller.de>2012-11-04 18:28:29 +0100
commit0e70ea9d8baa449ee3c8309f2b6a59ce06a55926 (patch)
tree538076bdc23be31e88ba012aa4f26448c8fd1ca3 /apps/files_encryption
parent1205749f8cec19c30c9f58f7f97832fac9a4c502 (diff)
downloadnextcloud-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.php2
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);