From 810fa2789f0196268fc330a7994607699e3e2278 Mon Sep 17 00:00:00 2001 From: Tim Starling Date: Thu, 30 Apr 2009 05:29:21 +0000 Subject: [PATCH] Don't double-escape RootPW error. --- config/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/index.php b/config/index.php index 3a4ac7e9ff..557090562e 100644 --- a/config/index.php +++ b/config/index.php @@ -982,7 +982,7 @@ if( $conf->posted && ( 0 == count( $errs ) ) ) { print "
  • Couldn't create database " . htmlspecialchars( $wgDBname ) . "; try with root access or check your username/pass.
  • \n"; - $errs["RootPW"] = "<- Enter"; + $errs["RootPW"] = "<- Enter"; continue; } print "
  • Created database " . htmlspecialchars( $wgDBname ) . "
  • \n"; -- 2.20.1