Index: trunk/phase3/includes/EditPage.php |
— | — | @@ -1551,7 +1551,9 @@ |
1552 | 1552 | if ( $isSubjectPreview ) |
1553 | 1553 | $summary = wfMsgForContent( 'newsectionsummary', $wgParser->stripSectionName( $summary ) ); |
1554 | 1554 | |
1555 | | - $summary = wfMsgExt( 'subject-preview', 'parseinline' ) . $sk->commentBlock( $summary, $this->mTitle, !!$isSubjectPreview ); |
| 1555 | + $message = $isSubjectPreview ? 'subject-preview' : 'summary-preview'; |
| 1556 | + |
| 1557 | + $summary = wfMsgExt( $message, 'parseinline' ) . $sk->commentBlock( $summary, $this->mTitle, $isSubjectPreview ); |
1556 | 1558 | return Xml::tags( 'div', array( 'class' => 'mw-summary-preview' ), $summary ); |
1557 | 1559 | } |
1558 | 1560 | |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -156,6 +156,8 @@ |
157 | 157 | * (bug 23240) Add ID to namespace selector form on Special:Watchlist |
158 | 158 | * The pipe | character in urls is now escaped. |
159 | 159 | * (bug 23422) mp3 files can now be moved |
| 160 | +* (bug 23448) MediaWiki:Summary-preview is now displayed instead of |
| 161 | + MediaWiki:Subject-preview when previewing summary |
160 | 162 | |
161 | 163 | === API changes in 1.17 === |
162 | 164 | * (bug 22738) Allow filtering by action type on query=logevent |