From 60d7819026219c13ae3a72a258df77471df0824d Mon Sep 17 00:00:00 2001 From: Jens Frank Date: Tue, 12 Oct 2004 10:07:31 +0000 Subject: [PATCH] Catch error 2000, too. Some mysql servers return 2000 instead of 1045 --- config/index.php | 1 + 1 file changed, 1 insertion(+) diff --git a/config/index.php b/config/index.php index 4aaaa9fbc4..920edc712e 100644 --- a/config/index.php +++ b/config/index.php @@ -397,6 +397,7 @@ if( $conf->posted && ( 0 == count( $errs ) ) ) { $ok = false; switch( $err ) { case 1045: + case 2000: if( $conf->Root ) { $errs["RootPW"] = "Check password"; } else { -- 2.20.1