summaryrefslogtreecommitdiffstats
path: root/index.php
diff options
context:
space:
mode:
authorMarvin Thomas Rabe <m.rabe@echtzeitraum.de>2011-10-03 13:32:16 +0200
committerMarvin Thomas Rabe <m.rabe@echtzeitraum.de>2011-10-03 13:32:16 +0200
commit481a37fcf3ea574ad5e22ecb57cf0161081cf230 (patch)
treeafb0a10e3dd924f5e42f09af489e3cdb7be40761 /index.php
parenta2bcbec791b7cd81e5a1d734691f9cff63d114e2 (diff)
downloadnextcloud-server-481a37fcf3ea574ad5e22ecb57cf0161081cf230.tar.gz
nextcloud-server-481a37fcf3ea574ad5e22ecb57cf0161081cf230.zip
Show database only in advanced
Diffstat (limited to 'index.php')
-rw-r--r--index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.php b/index.php
index fb8d1922dd4..072f526d8f9 100644
--- a/index.php
+++ b/index.php
@@ -28,7 +28,7 @@ require_once('lib/base.php');
// Setup required :
$not_installed = !OC_Config::getValue('installed', false);
$install_called = (isset($_POST['install']) AND $_POST['install']=='true');
-if($not_installed) {
+if($not_installed OR true) {
OC_Util::addScript('setup');
require_once('setup.php');
exit();