diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-01-23 20:50:09 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-01-23 20:50:09 +0100 |
commit | 4734146580d8175e9e6178097258b7f87e7aba86 (patch) | |
tree | 0b7af8a4a928eed1357209e155b4fdab6ce030ee /apps/files/templates/admin.php | |
parent | 0daabe5b6a2f96e8b754c2414bb83d00277a307a (diff) | |
download | nextcloud-server-4734146580d8175e9e6178097258b7f87e7aba86.tar.gz nextcloud-server-4734146580d8175e9e6178097258b7f87e7aba86.zip |
Fixed max upload size input field style
Added "type=text" makes it look like nice like all other fields
Diffstat (limited to 'apps/files/templates/admin.php')
-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 697fc52526a..a5afd55fbc3 100644 --- a/apps/files/templates/admin.php +++ b/apps/files/templates/admin.php @@ -5,7 +5,7 @@ <h2><?php p($l->t('File handling')); ?></h2> <?php if($_['uploadChangable']):?> <label for="maxUploadSize"><?php p($l->t( 'Maximum upload size' )); ?> </label> - <input name='maxUploadSize' id="maxUploadSize" value='<?php p($_['uploadMaxFilesize']) ?>'/> + <input type="text" name='maxUploadSize' id="maxUploadSize" value='<?php p($_['uploadMaxFilesize']) ?>'/> <?php if($_['displayMaxPossibleUploadSize']):?> (<?php p($l->t('max. possible: ')); p($_['maxPossibleUploadSize']) ?>) <?php endif;?> |