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/settings.php | |
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/settings.php')
-rw-r--r-- | files/settings.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/settings.php b/files/settings.php index 6d237ed6152..23aed4d1b86 100644 --- a/files/settings.php +++ b/files/settings.php @@ -57,7 +57,7 @@ foreach( explode( "/", $dir ) as $i ){ // return template $tmpl = new OC_TEMPLATE( "files", "index", "user" ); -$tmpl->assign( "files", $files ); +$tmpl->assign( 'files', $files ); $tmpl->assign( "breadcrumb", $breadcrumb ); $tmpl->printPage(); |