diff options
author | Vincent Petry <pvince81@owncloud.com> | 2016-09-19 21:29:48 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2016-11-02 20:43:35 +0100 |
commit | 7e701504be9352d21a25d17adca45dc5ed79d792 (patch) | |
tree | 57a8c3b2945f26281f069777db6f8c689bc304b5 /apps/files/templates/list.php | |
parent | e6b52ef4cd1a92004895320d52f08b44a8b422d3 (diff) | |
download | nextcloud-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.php | 2 |
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']) ?>" /> |