diff options
author | Bart Visscher <bartv@thisnet.nl> | 2012-12-14 23:22:46 +0100 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2012-12-15 00:43:46 +0100 |
commit | 85bd28c5081e7c2fea236c4528c23be283aa7350 (patch) | |
tree | 8d79b78d14831057bf2db8c8be2e889460e93063 /lib/files.php | |
parent | f39454ed12018402f38a8f6bf99fc94d676a0a3a (diff) | |
download | nextcloud-server-85bd28c5081e7c2fea236c4528c23be283aa7350.tar.gz nextcloud-server-85bd28c5081e7c2fea236c4528c23be283aa7350.zip |
Fix some of "Closing brace must be on a line by itself"
Diffstat (limited to 'lib/files.php')
-rw-r--r-- | lib/files.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/files.php b/lib/files.php index b4a4145a493..152ed8f34a7 100644 --- a/lib/files.php +++ b/lib/files.php @@ -492,7 +492,9 @@ class OC_Files { if(is_writable(OC::$SERVERROOT.'/.htaccess')) { file_put_contents(OC::$SERVERROOT.'/.htaccess', $htaccess); return OC_Helper::computerFileSize($size); - } else { OC_Log::write('files', 'Can\'t write upload limit to '.OC::$SERVERROOT.'/.htaccess. Please check the file permissions', OC_Log::WARN); } + } else { + OC_Log::write('files', 'Can\'t write upload limit to '.OC::$SERVERROOT.'/.htaccess. Please check the file permissions', OC_Log::WARN); + } return false; } |