diff options
author | Robin Appelman <icewind1991@gmail.com> | 2011-05-29 17:43:13 +0200 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2011-05-29 17:43:13 +0200 |
commit | 6b34ba8a8ef94c36c73dc68eb6cfe9b12335f7a4 (patch) | |
tree | 9d35064afa69d955e1158794cd836ce5a28f5149 /files/templates | |
parent | f48344df309819d4f121dfc0b98aca142db3ed14 (diff) | |
download | nextcloud-server-6b34ba8a8ef94c36c73dc68eb6cfe9b12335f7a4.tar.gz nextcloud-server-6b34ba8a8ef94c36c73dc68eb6cfe9b12335f7a4.zip |
Make max upload filesize configurable for apache hosts
Diffstat (limited to 'files/templates')
-rw-r--r-- | files/templates/admin.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/files/templates/admin.php b/files/templates/admin.php index 65a540ac914..f768931eb2f 100644 --- a/files/templates/admin.php +++ b/files/templates/admin.php @@ -1,4 +1,7 @@ -<form> +<form action='#' method='post'> + <?php if($_['htaccessWorking']):?> + Maximum upload size <input name='maxUploadSize' value='<?php echo $_['uploadMaxFilesize'] ?>'/><br/> + <?php endif;?> <input type="checkbox" /> Allow public folders<br> (if public is enabled)<br> @@ -9,4 +12,5 @@ <input type="checkbox" /> Allow downloading shared files<br> <input type="checkbox" /> Allow uploading in shared directory<br> + <input type='submit' value='Save'/> </form> |