diff options
author | Pellaeon Lin <nfsmwlin@gmail.com> | 2013-12-11 12:09:48 +0800 |
---|---|---|
committer | Pellaeon Lin <nfsmwlin@gmail.com> | 2013-12-11 12:21:39 +0800 |
commit | 4b081be9569ed831c8f0fb7448bf798f004b8816 (patch) | |
tree | cabc80e78e6c02b9a46a24d0ba396921a354e83d /apps/files/templates | |
parent | 0aa38165a4659fedd98f752bdd99bf174ed98a76 (diff) | |
download | nextcloud-server-4b081be9569ed831c8f0fb7448bf798f004b8816.tar.gz nextcloud-server-4b081be9569ed831c8f0fb7448bf798f004b8816.zip |
#max_upload is needed after all
Diffstat (limited to 'apps/files/templates')
-rw-r--r-- | apps/files/templates/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index 3d8a7f78e41..f20a3f1d073 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -15,7 +15,7 @@ <div id="upload" class="button" title="<?php p($l->t('Upload') . ' max. '.$_['uploadMaxHumanFilesize']) ?>"> <?php if($_['uploadMaxFilesize'] >= 0):?> - <input type="hidden" name="MAX_FILE_SIZE" value="<?php p($_['uploadMaxFilesize']) ?>"> + <input type="hidden" id="max_upload" name="MAX_FILE_SIZE" value="<?php p($_['uploadMaxFilesize']) ?>"> <?php endif;?> <input type="hidden" id="upload_limit" value="<?php p($_['uploadLimit']) ?>"> <input type="hidden" id="free_space" value="<?php p($_['freeSpace']) ?>"> |