X-Git-Url: http://git.cyclocoop.org/%22%20.%20generer_url_ecrire%28%22auteur_infos%22%2C%20%22id_auteur=%24id%22%29%20.%20%22?a=blobdiff_plain;f=includes%2Finstaller%2FWebInstallerWelcome.php;h=28e87847015682e198746e2b4ec71aed56d789a0;hb=7e0fb4fff6a247802c2209df48cf9fab8bfb8563;hp=0d7948495ee8cbdacd0a9b7a0b69e06b90d05d4e;hpb=c5d44cc0cfcb8053479f617f4a5c2427178948dd;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/installer/WebInstallerWelcome.php b/includes/installer/WebInstallerWelcome.php index 0d7948495e..28e8784701 100644 --- a/includes/installer/WebInstallerWelcome.php +++ b/includes/installer/WebInstallerWelcome.php @@ -25,17 +25,15 @@ class WebInstallerWelcome extends WebInstallerPage { * @return string */ public function execute() { - if ( $this->parent->request->wasPosted() ) { - if ( $this->getVar( '_Environment' ) ) { - return 'continue'; - } + if ( $this->parent->request->wasPosted() && $this->getVar( '_Environment' ) ) { + return 'continue'; } - $this->parent->output->addWikiTextInterface( wfMessage( 'config-welcome' )->plain() ); + $this->parent->output->addWikiTextAsInterface( wfMessage( 'config-welcome' )->plain() ); $status = $this->parent->doEnvironmentChecks(); if ( $status->isGood() ) { $this->parent->output->addHTML( '' . wfMessage( 'config-env-good' )->escaped() . '' ); - $this->parent->output->addWikiTextInterface( wfMessage( 'config-copyright', + $this->parent->output->addWikiTextAsInterface( wfMessage( 'config-copyright', SpecialVersion::getCopyrightAndAuthorList() )->plain() ); $this->startForm(); $this->endForm();