X-Git-Url: https://git.cyclocoop.org/%242?a=blobdiff_plain;f=includes%2Finstaller%2FInstaller.php;h=2f450056083295ae5cfc178dab10d74cb42645ec;hb=22280a1e3b8bd8ad33bac75225a6c71d19780d36;hp=4f04c2258afa3719fbd866d9ba2638c8d0c71359;hpb=8cc7208753c45acf2c47f78b0569e18150f193a5;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/installer/Installer.php b/includes/installer/Installer.php index 4f04c2258a..2f45005608 100644 --- a/includes/installer/Installer.php +++ b/includes/installer/Installer.php @@ -302,7 +302,8 @@ abstract class Installer { /** * URL to mediawiki-announce subscription */ - protected $mediaWikiAnnounceUrl = 'https://lists.wikimedia.org/mailman/subscribe/mediawiki-announce'; + protected $mediaWikiAnnounceUrl = + 'https://lists.wikimedia.org/mailman/subscribe/mediawiki-announce'; /** * Supported language codes for Mailman @@ -983,6 +984,7 @@ abstract class Installer { $this->showMessage( 'config-using-server', $server ); $this->setVar( 'wgServer', $server ); } + return true; } @@ -1001,7 +1003,11 @@ abstract class Installer { $IP = dirname( dirname( __DIR__ ) ); $this->setVar( 'IP', $IP ); - $this->showMessage( 'config-using-uri', $this->getVar( 'wgServer' ), $this->getVar( 'wgScriptPath' ) ); + $this->showMessage( + 'config-using-uri', + $this->getVar( 'wgServer' ), + $this->getVar( 'wgScriptPath' ) + ); return true; } @@ -1195,7 +1201,8 @@ abstract class Installer { } } - // Uses messages 'config-unicode-using-php', 'config-unicode-using-utf8', 'config-unicode-using-intl' + // Uses messages 'config-unicode-using-php', 'config-unicode-using-utf8', + // 'config-unicode-using-intl' if ( $useNormalizer === 'php' ) { $this->showMessage( 'config-unicode-pure-php-warning' ); } else {