From 2631bf17defe2fef912d99ccf0cdf3ac5b59c2c6 Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Mon, 18 Jan 2010 16:18:12 +0000 Subject: [PATCH] Tweak __call failure text again --- maintenance/install-utils.inc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/maintenance/install-utils.inc b/maintenance/install-utils.inc index 1d018a606a..70bcf519fa 100644 --- a/maintenance/install-utils.inc +++ b/maintenance/install-utils.inc @@ -47,10 +47,10 @@ function install_version_checks() { $ok = false; call_user_func_array( array( $test, 'test' ), array( &$ok ) ); if ( !$ok ) { - 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" . - "ABORTING (see http://bugs.php.net/bug.php?id=50394 for details)\n"; + echo "PHP 5.2.11, 5.2.12, and 5.3.1 (your version: " . phpversion() . ") are not compatible with\n" . + "MediaWiki due to a bug involving reference parameters to __call. Upgrade to\n" . + "PHP 5.3.2 (5.2.13 for 5.2 users), or downgrade to PHP 5.3.0 (5.2.10 for 5.2\n" . + "users) to fix this. ABORTING (see http://bugs.php.net/bug.php?id=50394 for details)\n"; die( 1 ); } -- 2.20.1