Index: branches/REL1_15/phase3/includes/parser/Parser.php |
— | — | @@ -3689,13 +3689,13 @@ |
3690 | 3690 | * |
3691 | 3691 | * @param string $text the text to transform |
3692 | 3692 | * @param Title &$title the Title object for the current article |
3693 | | - * @param User &$user the User object describing the current user |
| 3693 | + * @param User $user the User object describing the current user |
3694 | 3694 | * @param ParserOptions $options parsing options |
3695 | 3695 | * @param bool $clearState whether to clear the parser state first |
3696 | 3696 | * @return string the altered wiki markup |
3697 | 3697 | * @public |
3698 | 3698 | */ |
3699 | | - function preSaveTransform( $text, &$title, $user, $options, $clearState = true ) { |
| 3699 | + function preSaveTransform( $text, Title $title, $user, $options, $clearState = true ) { |
3700 | 3700 | $this->mOptions = $options; |
3701 | 3701 | $this->setTitle( $title ); |
3702 | 3702 | $this->setOutputType( self::OT_WIKI ); |
Property changes on: branches/REL1_15/phase3/includes/parser |
___________________________________________________________________ |
Name: svn:mergeinfo |
3703 | 3703 | + /trunk/phase3/includes/parser:48836,48886,48892,48989,48992,49002,49051,49068,49086,49142,49191-49192,49212,49682,49685,49730,49775,49954,49956,49999,50041,50054,50070,50132,50134,50169,50215,50218,50328,50470 |
/trunk/phase3/includes/specials/parser:48993 |
Index: branches/REL1_15/phase3/RELEASE-NOTES |
— | — | @@ -300,7 +300,9 @@ |
301 | 301 | * (bug 11451) Fix upgrade from MediaWiki 1.2 or earlier (imagelinks schema). |
302 | 302 | * Fixed SQLite indexes, installation and upgrade. Reintroduced it as an option |
303 | 303 | to the installer. |
| 304 | +* (bug 18170) Fixed a PHP warning in Parser::preSaveTransform() in PHP 5.3 |
304 | 305 | |
| 306 | + |
305 | 307 | == API changes in 1.15 == |
306 | 308 | * (bug 16858) Revamped list=deletedrevs to make listing deleted contributions |
307 | 309 | and listing all deleted pages possible |