diff options
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>'); |