Also ditch PHP thing. We would've bailed for a bad version already
authorChad Horohoe <demon@users.mediawiki.org>
Tue, 7 Dec 2010 18:32:09 +0000 (18:32 +0000)
committerChad Horohoe <demon@users.mediawiki.org>
Tue, 7 Dec 2010 18:32:09 +0000 (18:32 +0000)
includes/installer/Installer.i18n.php
includes/installer/Installer.php

index 2834002..3e18c8e 100644 (file)
@@ -75,7 +75,6 @@ You should have received <doclink href=Copying>a copy of the GNU General Public
 You can install MediaWiki.</span>', // FIXME: take span out of message.
        'config-env-bad'                  => 'The environment has been checked.
 You cannot install MediaWiki.',
-       'config-env-php'                  => 'PHP $1 is installed.',
        'config-unicode-using-utf8'       => 'Using Brion Vibber\'s utf8_normalize.so for Unicode normalization.',
        'config-unicode-using-intl'       => 'Using the [http://pecl.php.net/intl intl PECL extension] for Unicode normalization.',
        'config-unicode-pure-php-warning' => "'''Warning''': The [http://pecl.php.net/intl intl PECL extension] is not available to handle Unicode normalization, falling back to slow pure-PHP implementation.
index baab522..79c63b3 100644 (file)
@@ -142,8 +142,6 @@ abstract class Installer {
         * @return boolean
         */
        public function doEnvironmentChecks() {
-               $this->showMessage( 'config-env-php', phpversion() );
-
                $good = true;
 
                foreach ( $this->envChecks as $check ) {