diff options
author | Robin Appelman <icewind1991@gmail.com> | 2011-07-28 21:05:49 +0200 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2011-07-28 21:05:49 +0200 |
commit | 5728f801161ae0ee25113581157a26b1b63cd9ff (patch) | |
tree | 5d9039fe1b07a7f0b6e8a09757d1df25c4f81e68 /files | |
parent | bc51425bb753d7a5adffe707053b6186a4de7bba (diff) | |
download | nextcloud-server-5728f801161ae0ee25113581157a26b1b63cd9ff.tar.gz nextcloud-server-5728f801161ae0ee25113581157a26b1b63cd9ff.zip |
remove dummy settings
Diffstat (limited to 'files')
-rw-r--r-- | files/templates/admin.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/files/templates/admin.php b/files/templates/admin.php index ff331f860e6..40880d34911 100644 --- a/files/templates/admin.php +++ b/files/templates/admin.php @@ -3,8 +3,11 @@ <form name="filesForm" action='#' method='post'> <?php if($_['htaccessWorking']):?> <label for="maxUploadSize"><?php echo $l->t( 'Maximum upload size' ); ?> </label><input name='maxUploadSize' id="maxUploadSize" value='<?php echo $_['uploadMaxFilesize'] ?>'/><br/> + <input type='submit' value='Save'/> + <?php else:?> + No settings currently available. <?php endif;?> - <input type="checkbox" name="publicEnable" id="publicEnable" /><label for="publicEnable"> <?php echo $l->t( 'Allow public folders' ); ?></label><br> +<!-- <input type="checkbox" name="publicEnable" id="publicEnable" /><label for="publicEnable"> <?php echo $l->t( 'Allow public folders' ); ?></label><br> <div style="padding-left: 20px"> <input type="radio" name="sharingaim" id="separated" /><label for="separated"> <?php echo $l->t( 'separated from webdav storage' ); ?></label><br> @@ -13,6 +16,5 @@ </div> <input type="checkbox" id="downloadShared" /><label for="downloadShared"> <?php echo $l->t( 'Allow downloading shared files' ); ?></label><br> - <input type="checkbox" id="uploadShared" /><label for="uploadShared"> <?php echo $l->t( 'Allow uploading in shared directory' ); ?></label><br> - <input type='submit' value='Save'/> + <input type="checkbox" id="uploadShared" /><label for="uploadShared"> <?php echo $l->t( 'Allow uploading in shared directory' ); ?></label><br>--> </form> |