X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Finstaller%2FWebInstallerName.php;h=81a107dea30f35e888c76cff72943d2269b973d4;hb=50212e6d0ef2cdcc63aece18c8d77c9c251be7ed;hp=2345d896a19037f0d04e3abfcecd121346bdbb71;hpb=4eac279551207cd8bca0f2ada2fbfb234137860a;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/installer/WebInstallerName.php b/includes/installer/WebInstallerName.php index 2345d896a1..81a107dea3 100644 --- a/includes/installer/WebInstallerName.php +++ b/includes/installer/WebInstallerName.php @@ -50,6 +50,11 @@ class WebInstallerName extends WebInstallerPage { wfMessage( 'config-ns-other-default' )->inContentLanguage()->text() ); + $pingbackInfo = ( new Pingback() )->getSystemInfo(); + // Database isn't available in config yet, so take it + // from the installer + $pingbackInfo['database'] = $this->getVar( 'wgDBtype' ); + $this->addHTML( $this->parent->getTextBox( [ 'var' => 'wgSitename', @@ -103,7 +108,10 @@ class WebInstallerName extends WebInstallerPage { $this->parent->getCheckBox( [ 'var' => 'wgPingback', 'label' => 'config-pingback', - 'help' => $this->parent->getHelpBox( 'config-pingback-help' ), + 'help' => $this->parent->getHelpBox( + 'config-pingback-help', + FormatJson::encode( $pingbackInfo, true ) + ), 'value' => true, ] ) . $this->getFieldsetEnd() . @@ -243,7 +251,7 @@ class WebInstallerName extends WebInstallerPage { $retVal = false; } // If they asked to subscribe to mediawiki-announce but didn't give - // an e-mail, show an error. Bug 29332 + // an e-mail, show an error. T31332 if ( !$email && $this->getVar( '_Subscribe' ) ) { $this->parent->showError( 'config-subscribe-noemail' ); $retVal = false;