Revert r78000 (removing PHP version from environment checks), never got a chance...
authorChad Horohoe <demon@users.mediawiki.org>
Thu, 6 Jan 2011 20:03:52 +0000 (20:03 +0000)
committerChad Horohoe <demon@users.mediawiki.org>
Thu, 6 Jan 2011 20:03:52 +0000 (20:03 +0000)
includes/installer/Installer.i18n.php
includes/installer/Installer.php

index a7edc3b..7ff94ba 100644 (file)
@@ -83,6 +83,7 @@ You should have received <doclink href=Copying>a copy of the GNU General Public
 You can install MediaWiki.',
        '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 f54ab24..497bc85 100644 (file)
@@ -142,6 +142,8 @@ abstract class Installer {
         * @return Status
         */
        public function doEnvironmentChecks() {
+               $this->showMessage( 'config-env-php', phpversion() );
+
                $good = true;
 
                foreach ( $this->envChecks as $check ) {