aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/index.php
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2012-10-23 23:48:27 -0700
committerLukas Reschke <lukas@statuscode.ch>2012-10-23 23:48:27 -0700
commita7eb56c799499a76fdc49c1a1dc971bb6dfea72e (patch)
tree9c9eaa76a78f86b5f1b59f432d056a1cf459c39e /apps/files/index.php
parentf33af71eb017fda5ea7e95270b92f1bca8835bbc (diff)
parent36d0d7590134f5587ab09c67927c3187e8b5c790 (diff)
downloadnextcloud-server-a7eb56c799499a76fdc49c1a1dc971bb6dfea72e.tar.gz
nextcloud-server-a7eb56c799499a76fdc49c1a1dc971bb6dfea72e.zip
Merge pull request #76 from fmms/master
checkstyle: some more cleanups
Diffstat (limited to 'apps/files/index.php')
-rw-r--r--apps/files/index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/index.php b/apps/files/index.php
index a65ffe732a1..92fda5b21e5 100644
--- a/apps/files/index.php
+++ b/apps/files/index.php
@@ -87,7 +87,7 @@ $maxUploadFilesize = min($upload_max_filesize, $post_max_size);
$freeSpace=OC_Filesystem::free_space($dir);
$freeSpace=max($freeSpace,0);
-$maxUploadFilesize = min($maxUploadFilesize ,$freeSpace);
+$maxUploadFilesize = min($maxUploadFilesize, $freeSpace);
$permissions = OCP\Share::PERMISSION_READ;
if (OC_Filesystem::isUpdatable($dir.'/')) {