diff options
author | Robin <robin@Amaya.(none)> | 2010-03-16 20:25:05 +0100 |
---|---|---|
committer | Robin <robin@Amaya.(none)> | 2010-03-16 20:25:05 +0100 |
commit | 97270d5c63d47bcf65a4604f9b744f7e4718f1d6 (patch) | |
tree | 3c4a54a125d7df226aa8006d7131d299d09d0d3e /settings | |
parent | 2aef090ac5d779f6e1162ee7eb4e0ae29ec1c12d (diff) | |
download | nextcloud-server-97270d5c63d47bcf65a4604f9b744f7e4718f1d6.tar.gz nextcloud-server-97270d5c63d47bcf65a4604f9b744f7e4718f1d6.zip |
moved the config functions to /inc/lib_config.php
Diffstat (limited to 'settings')
-rwxr-xr-x | settings/index.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/settings/index.php b/settings/index.php index 21b57216f2b..a34a551e922 100755 --- a/settings/index.php +++ b/settings/index.php @@ -26,8 +26,12 @@ require_once('../inc/lib_base.php'); OC_UTIL::showheader(); +//uncheck the create and fill db options on default. +$createDB=false; +$fillDB=false; + echo('<div class="center">'); -OC_UTIL::showconfigform(); +OC_CONFIG::showconfigform(); echo('</div>'); |