From d24347d823e7a8e1d70d197950b9bc8660eb242c Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 2 Apr 2004 10:31:39 +0000 Subject: [PATCH] Fix non-root install bug --- config/index.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/index.php b/config/index.php index 9eab263172..b353e5a5d5 100644 --- a/config/index.php +++ b/config/index.php @@ -99,6 +99,7 @@ header( "Content-type: text/html; charset=utf-8" ); @@ -307,7 +308,7 @@ if( $conf->posted && ( 0 == count( $errs ) ) ) { $errs["RootPW"] = "Got root?"; print " need password.\n"; } else { - $conf->Root = true; + $conf->Root = false; $conf->RootPW = ""; print " ok.\n"; # And keep going... -- 2.20.1