diff options
author | Frank Karlitschek <frank@owncloud.org> | 2013-03-07 07:28:22 -0800 |
---|---|---|
committer | Frank Karlitschek <frank@owncloud.org> | 2013-03-07 07:28:22 -0800 |
commit | 19073e071144886e8c6d34be2c9f94cb6d0fb55f (patch) | |
tree | d0ee57e6cc211e4f4b8d5173506142d6ef3a7c01 /apps | |
parent | 70f0e0a8da73f8eac3ec63e558377068a0e0a3b0 (diff) | |
parent | ab7dc76ff168cb2667196071d66d905b0446d02f (diff) | |
download | nextcloud-server-19073e071144886e8c6d34be2c9f94cb6d0fb55f.tar.gz nextcloud-server-19073e071144886e8c6d34be2c9f94cb6d0fb55f.zip |
Merge pull request #2167 from owncloud/input-type-fix
Input type fix
Diffstat (limited to 'apps')
-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 /> |