X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Finstaller%2FWebInstaller.php;h=3a3e809cc624fe1caed6c900d1704b9ae736c1cb;hb=99a5efa7c58dcff13419d3053bae973bd9b7bccf;hp=68c2ebe36acaeb2323d6344d25a6b51d4186322a;hpb=e8c46feb782d090e57d278d38cc00202b2c55930;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/installer/WebInstaller.php b/includes/installer/WebInstaller.php index 68c2ebe36a..3a3e809cc6 100644 --- a/includes/installer/WebInstaller.php +++ b/includes/installer/WebInstaller.php @@ -667,7 +667,7 @@ class WebInstaller extends Installer { * Get HTML for an info box with an icon. * * @param string $text Wikitext, get this with wfMessage()->plain() - * @param string|bool $icon Icon name, file in skins/common/images. Default: false + * @param string|bool $icon Icon name, file in mw-config/images. Default: false * @param string|bool $class Additional class name to add to the wrapper div. Default: false. * * @return string @@ -675,8 +675,8 @@ class WebInstaller extends Installer { public function getInfoBox( $text, $icon = false, $class = false ) { $text = $this->parse( $text, true ); $icon = ( $icon == false ) ? - '../skins/common/images/info-32.png' : - '../skins/common/images/' . $icon; + 'images/info-32.png' : + 'images/' . $icon; $alt = wfMessage( 'config-information' )->text(); return Html::infoBox( $text, $icon, $alt, $class, false );