aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/templates/list.php
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2016-09-19 21:29:48 +0200
committerRoeland Jago Douma <roeland@famdouma.nl>2016-11-02 20:43:35 +0100
commit7e701504be9352d21a25d17adca45dc5ed79d792 (patch)
tree57a8c3b2945f26281f069777db6f8c689bc304b5 /apps/files/templates/list.php
parente6b52ef4cd1a92004895320d52f08b44a8b422d3 (diff)
downloadnextcloud-server-7e701504be9352d21a25d17adca45dc5ed79d792.tar.gz
nextcloud-server-7e701504be9352d21a25d17adca45dc5ed79d792.zip
Remove upload_limit in files app as it is not needed with PUT upload (#26069)
The web UI now uses for PUT uploads which aren't restricted by PHP's upload_max_filesize and post_max_size Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
Diffstat (limited to 'apps/files/templates/list.php')
-rw-r--r--apps/files/templates/list.php2
1 files changed, 0 insertions, 2 deletions
diff --git a/apps/files/templates/list.php b/apps/files/templates/list.php
index e741849f38b..d66f12f4aff 100644
--- a/apps/files/templates/list.php
+++ b/apps/files/templates/list.php
@@ -15,8 +15,6 @@
through ajax instead (updateStorageStatistics).
*/ ?>
<input type="hidden" name="permissions" value="" id="permissions">
- <input type="hidden" id="max_upload" name="MAX_FILE_SIZE" value="<?php isset($_['uploadMaxFilesize']) ? p($_['uploadMaxFilesize']) : '' ?>">
- <input type="hidden" id="upload_limit" value="<?php isset($_['uploadLimit']) ? p($_['uploadLimit']) : '' ?>">
<input type="hidden" id="free_space" value="<?php isset($_['freeSpace']) ? p($_['freeSpace']) : '' ?>">
<?php if(isset($_['dirToken'])):?>
<input type="hidden" id="publicUploadRequestToken" name="requesttoken" value="<?php p($_['requesttoken']) ?>" />