diff options
author | Morris Jobke <morris.jobke@gmail.com> | 2014-06-02 16:29:03 +0200 |
---|---|---|
committer | Morris Jobke <morris.jobke@gmail.com> | 2014-06-02 16:29:03 +0200 |
commit | 57ef089aac11f66f7cb29e9de1cb1e7d7bb46058 (patch) | |
tree | d68c62c5ee4c29cedc14756168e627356d9e914b /apps/files/templates | |
parent | 6f4bdbdb9495227c1ad1bf170ad9caeddea127c7 (diff) | |
download | nextcloud-server-57ef089aac11f66f7cb29e9de1cb1e7d7bb46058.tar.gz nextcloud-server-57ef089aac11f66f7cb29e9de1cb1e7d7bb46058.zip |
drop allowZIPdownload and maxZIPSize as options
Diffstat (limited to 'apps/files/templates')
-rw-r--r-- | apps/files/templates/admin.php | 10 | ||||
-rw-r--r-- | apps/files/templates/list.php | 13 |
2 files changed, 5 insertions, 18 deletions
diff --git a/apps/files/templates/admin.php b/apps/files/templates/admin.php index 5f7d3261d6c..a75f0c94878 100644 --- a/apps/files/templates/admin.php +++ b/apps/files/templates/admin.php @@ -10,16 +10,6 @@ <?php endif;?> <br/> <?php endif;?> - <input type="checkbox" name="allowZipDownload" id="allowZipDownload" value="1" - title="<?php p($l->t( 'Needed for multi-file and folder downloads.' )); ?>" - <?php if ($_['allowZipDownload']): ?> checked="checked"<?php endif; ?> /> - <label for="allowZipDownload"><?php p($l->t( 'Enable ZIP-download' )); ?></label><br/> - - <input type="text" name="maxZipInputSize" id="maxZipInputSize" style="width:180px;" value='<?php p($_['maxZipInputSize']) ?>' - title="<?php p($l->t( '0 is unlimited' )); ?>" - <?php if (!$_['allowZipDownload']): ?> disabled="disabled"<?php endif; ?> /><br /> - <em><?php p($l->t( 'Maximum input size for ZIP files' )); ?> </em><br /> - <input type="hidden" value="<?php p($_['requesttoken']); ?>" name="requesttoken" /> <input type="submit" name="submitFilesAdminSettings" id="submitFilesAdminSettings" value="<?php p($l->t( 'Save' )); ?>"/> diff --git a/apps/files/templates/list.php b/apps/files/templates/list.php index 17bf3b3de83..eddcd9f6236 100644 --- a/apps/files/templates/list.php +++ b/apps/files/templates/list.php @@ -61,13 +61,11 @@ <label for="select_all_files"></label> <a class="name sort columntitle" data-sort="name"><span><?php p($l->t( 'Name' )); ?></span><span class="sort-indicator"></span></a> <span id="selectedActionsList" class="selectedActions"> - <?php if($_['allowZipDownload']) : ?> - <a href="" class="download"> - <img class="svg" alt="Download" - src="<?php print_unescaped(OCP\image_path("core", "actions/download.svg")); ?>" /> - <?php p($l->t('Download'))?> - </a> - <?php endif; ?> + <a href="" class="download"> + <img class="svg" alt="Download" + src="<?php print_unescaped(OCP\image_path("core", "actions/download.svg")); ?>" /> + <?php p($l->t('Download'))?> + </a> </span> </div> </th> @@ -89,7 +87,6 @@ <tfoot> </tfoot> </table> -<input type="hidden" name="allowZipDownload" id="allowZipDownload" value="<?php p($_['allowZipDownload']); ?>" /> <input type="hidden" name="dir" id="dir" value="" /> <div id="editor"></div><!-- FIXME Do not use this div in your app! It is deprecated and will be removed in the future! --> <div id="uploadsize-message" title="<?php p($l->t('Upload too large'))?>"> |