X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Finstaller%2FWebInstallerComplete.php;h=2512efa7e379829f92ebc7fd2e07fa90342eae8a;hb=923855c0c558d3025be522bd3f9cd6660757308f;hp=456058e45525da63ef4e67c1103d4b036628b4c3;hpb=f43fa6f4f0e2cb60b8543daad661b48a3e0653a9;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/installer/WebInstallerComplete.php b/includes/installer/WebInstallerComplete.php index 456058e455..2512efa7e3 100644 --- a/includes/installer/WebInstallerComplete.php +++ b/includes/installer/WebInstallerComplete.php @@ -45,20 +45,21 @@ class WebInstallerComplete extends WebInstallerPage { } $this->addHTML( $this->parent->getInfoBox( - wfMessage( $msg, + new HtmlArmor( wfMessage( $msg, $lsUrl, $this->getVar( 'wgServer' ) . - $this->getVar( 'wgScriptPath' ) . '/index.php', - '', + $this->getVar( 'wgScriptPath' ) . '/index.php', + Message::rawParam( $this->parent->makeDownloadLinkHtml() ), $location ?: '' - )->plain(), 'tick-32.png' + )->parse() ), 'tick-32.png' ) ); $this->addHTML( $this->parent->getInfoBox( - wfMessage( 'config-extension-link' )->text() ) ); + wfMessage( 'config-extension-link' )->plain() ) ); $this->parent->restoreLinkPopups(); $this->endForm( false, false ); + return ''; } }