summaryrefslogtreecommitdiffstats
path: root/files/templates
diff options
context:
space:
mode:
authorRobin Appelman <icewind1991@gmail.com>2011-05-29 17:43:13 +0200
committerRobin Appelman <icewind1991@gmail.com>2011-05-29 17:43:13 +0200
commit6b34ba8a8ef94c36c73dc68eb6cfe9b12335f7a4 (patch)
tree9d35064afa69d955e1158794cd836ce5a28f5149 /files/templates
parentf48344df309819d4f121dfc0b98aca142db3ed14 (diff)
downloadnextcloud-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.php6
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>