Index: trunk/phase3/maintenance/syntaxChecker.php |
— | — | @@ -274,7 +274,6 @@ |
275 | 275 | $this->checkRegex( $file, $text, '/^[\s\r\n]+<\?/', 'leading whitespace' ); |
276 | 276 | $this->checkRegex( $file, $text, '/\?>[\s\r\n]*$/', 'trailing ?>' ); |
277 | 277 | $this->checkRegex( $file, $text, '/^[\xFF\xFE\xEF]/', 'byte-order mark' ); |
278 | | - $this->checkRegex( $file, $text, '/\&\$this/', 'passing $this by reference' ); |
279 | 278 | } |
280 | 279 | |
281 | 280 | private function checkRegex( $file, $text, $regex, $desc ) { |
Index: trunk/phase3/maintenance/install-utils.inc |
— | — | @@ -48,9 +48,8 @@ |
49 | 49 | call_user_func_array( array( $test, 'test' ), array( &$ok ) ); |
50 | 50 | if ( !$ok ) { |
51 | 51 | echo "PHP " . phpversion() . " is not compatible with MediaWiki due to a bug involving\n" . |
52 | | - "reference parameters to __call in PHP versions 5.3.1, 5.2.12 and 5.2.11.\n" . |
53 | | - "Upgrade to PHP 5.3.2 (5.2.13 for 5.2 users), or downgrade\n" . |
54 | | - "to PHP 5.3.0 (5.2.10 for 5.2 users) to fix this.\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" . |
55 | 54 | "ABORTING (see http://bugs.php.net/bug.php?id=50394 for details)\n"; |
56 | 55 | die( 1 ); |
57 | 56 | } |