Index: trunk/phase3/maintenance/syntaxChecker.php |
— | — | @@ -274,6 +274,7 @@ |
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' ); |
278 | 279 | } |
279 | 280 | |
280 | 281 | private function checkRegex( $file, $text, $regex, $desc ) { |
Index: trunk/phase3/maintenance/install-utils.inc |
— | — | @@ -48,8 +48,9 @@ |
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. Upgrade to PHP 5.3.2, or downgrade\n" . |
53 | | - "to PHP 5.3.0. to fix this.\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" . |
54 | 55 | "ABORTING (see http://bugs.php.net/bug.php?id=50394 for details)\n"; |
55 | 56 | die( 1 ); |
56 | 57 | } |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -715,8 +715,8 @@ |
716 | 716 | skin-specific JS pages |
717 | 717 | * (bug 5061) Use the more precise thumbcaption thumbimage and thumbinner classes |
718 | 718 | for image divs. |
719 | | -* IE50Fixes.css and IE55Fixes.css have been dropped from the Monobook and Chick |
720 | | - skins |
| 719 | +* (bug 22096) IE50Fixes.css and IE55Fixes.css have been dropped from the Monobook |
| 720 | + and Chick skins |
721 | 721 | |
722 | 722 | == API changes in 1.16 == |
723 | 723 | |