Tweak __call failure text again
authorChad Horohoe <demon@users.mediawiki.org>
Mon, 18 Jan 2010 16:18:12 +0000 (16:18 +0000)
committerChad Horohoe <demon@users.mediawiki.org>
Mon, 18 Jan 2010 16:18:12 +0000 (16:18 +0000)
maintenance/install-utils.inc

index 1d018a6..70bcf51 100644 (file)
@@ -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 );
        }