From: Chad Horohoe Date: Sun, 17 Jan 2010 00:18:25 +0000 (+0000) Subject: (bug 22122) __call() bug check outputs incorrect version. X-Git-Tag: 1.31.0-rc.0~38233 X-Git-Url: https://git.cyclocoop.org/admin/?a=commitdiff_plain;h=90eaf550b2c1e1804412538cf464c2500d56e316;p=lhc%2Fweb%2Fwiklou.git (bug 22122) __call() bug check outputs incorrect version. --- diff --git a/maintenance/install-utils.inc b/maintenance/install-utils.inc index 1919e8c5cd..1d018a606a 100644 --- a/maintenance/install-utils.inc +++ b/maintenance/install-utils.inc @@ -47,9 +47,9 @@ function install_version_checks() { $ok = false; call_user_func_array( array( $test, 'test' ), array( &$ok ) ); if ( !$ok ) { - echo "PHP 5.3.1 is not compatible with MediaWiki due to a bug involving\n" . + echo "PHP " . phpversion() . " is not compatible with MediaWiki due to a bug involving\n" . "reference parameters to __call. Upgrade to PHP 5.3.2, or downgrade\n" . - "to PHP 5.3.0 to fix this.\n" . + "to PHP 5.3.0. to fix this.\n" . "ABORTING (see http://bugs.php.net/bug.php?id=50394 for details)\n"; die( 1 ); }