Index: trunk/phase3/RELEASE-NOTES-1.19 |
— | — | @@ -11,6 +11,10 @@ |
12 | 12 | know what you think of it. Beta releases are not recommended for use in |
13 | 13 | production. |
14 | 14 | |
| 15 | +=== Changes since 1.19 beta 1 === |
| 16 | +* (bug 35014) Including a special page no longer sets the page's title to the |
| 17 | + included page |
| 18 | + |
15 | 19 | === Configuration changes in 1.19 === |
16 | 20 | * Removed SkinTemplateSetupPageCss hook; use BeforePageDisplay instead. |
17 | 21 | * (bug 27132) movefile right granted by default to registered users. |
Index: trunk/phase3/includes/OutputPage.php |
— | — | @@ -3433,7 +3433,7 @@ |
3434 | 3434 | * @param $args array |
3435 | 3435 | */ |
3436 | 3436 | public function addWikiMsgArray( $name, $args ) { |
3437 | | - $this->addWikiText( $this->msg( $name, $args )->plain() ); |
| 3437 | + $this->addHTML( $this->msg( $name, $args )->parseAsBlock() ); |
3438 | 3438 | } |
3439 | 3439 | |
3440 | 3440 | /** |
Index: branches/REL1_19/phase3/RELEASE-NOTES-1.19 |
— | — | @@ -11,6 +11,10 @@ |
12 | 12 | know what you think of it. Beta releases are not recommended for use in |
13 | 13 | production. |
14 | 14 | |
| 15 | +=== Changes since 1.19 beta 1 === |
| 16 | +* (bug 35014) Including a special page no longer sets the page's title to the |
| 17 | + included page |
| 18 | + |
15 | 19 | === Configuration changes in 1.19 === |
16 | 20 | * Removed SkinTemplateSetupPageCss hook; use BeforePageDisplay instead. |
17 | 21 | * (bug 27132) movefile right granted by default to registered users. |
Index: branches/REL1_19/phase3/includes/OutputPage.php |
— | — | @@ -3432,7 +3432,7 @@ |
3433 | 3433 | * @param $args array |
3434 | 3434 | */ |
3435 | 3435 | public function addWikiMsgArray( $name, $args ) { |
3436 | | - $this->addWikiText( $this->msg( $name, $args )->plain() ); |
| 3436 | + $this->addHTML( $this->msg( $name, $args )->parseAsBlock() ); |
3437 | 3437 | } |
3438 | 3438 | |
3439 | 3439 | /** |