From: Tim Starling Date: Thu, 30 Apr 2009 05:29:21 +0000 (+0000) Subject: Don't double-escape RootPW error. X-Git-Tag: 1.31.0-rc.0~41928 X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=commitdiff_plain;h=810fa2789f0196268fc330a7994607699e3e2278;p=lhc%2Fweb%2Fwiklou.git Don't double-escape RootPW error. --- 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";