Index: trunk/phase3/maintenance/install-utils.inc |
— | — | @@ -47,10 +47,10 @@ |
48 | 48 | $ok = false; |
49 | 49 | call_user_func_array( array( $test, 'test' ), array( &$ok ) ); |
50 | 50 | if ( !$ok ) { |
51 | | - echo "PHP " . phpversion() . " is not compatible with MediaWiki due to a bug involving\n" . |
52 | | - "reference parameters to __call. Upgrade to PHP 5.3.2, or downgrade\n" . |
53 | | - "to PHP 5.3.0. to fix this.\n" . |
54 | | - "ABORTING (see http://bugs.php.net/bug.php?id=50394 for details)\n"; |
| 51 | + echo "PHP 5.2.11, 5.2.12, and 5.3.1 (your version: " . phpversion() . ") are not compatible with\n" . |
| 52 | + "MediaWiki due to a bug involving reference parameters to __call. Upgrade to\n" . |
| 53 | + "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" . |
| 54 | + "users) to fix this. ABORTING (see http://bugs.php.net/bug.php?id=50394 for details)\n"; |
55 | 55 | die( 1 ); |
56 | 56 | } |
57 | 57 | |