diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-03-06 12:39:36 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-03-06 12:39:36 +0100 |
commit | ab7dc76ff168cb2667196071d66d905b0446d02f (patch) | |
tree | b047f745381bc61a94adb2ad9e81eed174a42e29 | |
parent | 114c6457a3eda726346dc9ff51bc3ecd54d1c941 (diff) | |
download | nextcloud-server-ab7dc76ff168cb2667196071d66d905b0446d02f.tar.gz nextcloud-server-ab7dc76ff168cb2667196071d66d905b0446d02f.zip |
add type=text to ZIP size field, fix second part of #2097
-rw-r--r-- | apps/files/templates/admin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/templates/admin.php b/apps/files/templates/admin.php index 0ab931a467c..e1ca6afc4ad 100644 --- a/apps/files/templates/admin.php +++ b/apps/files/templates/admin.php @@ -16,7 +16,7 @@ <?php if ($_['allowZipDownload']): ?> checked="checked"<?php endif; ?> /> <label for="allowZipDownload"><?php p($l->t( 'Enable ZIP-download' )); ?></label><br/> - <input name="maxZipInputSize" id="maxZipInputSize" style="width:180px;" value='<?php p($_['maxZipInputSize']) ?>' + <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 /> |