Index: trunk/phase3/includes/Article.php |
— | — | @@ -2921,9 +2921,9 @@ |
2922 | 2922 | ? 'revision-info-current' |
2923 | 2923 | : 'revision-info'; |
2924 | 2924 | |
2925 | | - $r = "\n\t\t\t\t<div id=\"mw-{$infomsg}\">" . wfMsg( $infomsg, $td, $userlinks, $revision->getID() ) . "</div>\n" . |
2926 | | - |
2927 | | - "\n\t\t\t\t<div id=\"mw-revision-nav\">" . $cdel . wfMsg( 'revision-nav', $prevdiff, |
| 2925 | + $r = "\n\t\t\t\t<div id=\"mw-{$infomsg}\">" . wfMsgExt( $infomsg, |
| 2926 | + array( 'parseinline', 'escapenoentities' ), $td, $userlinks, $revision->getID() ) . "</div>\n" . |
| 2927 | + "\n\t\t\t\t<div id=\"mw-revision-nav\">" . $cdel . wfMsg( 'revision-nav', $prevdiff, |
2928 | 2928 | $prevlink, $lnk, $curdiff, $nextlink, $nextdiff ) . "</div>\n\t\t\t"; |
2929 | 2929 | $wgOut->setSubtitle( $r ); |
2930 | 2930 | } |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -385,6 +385,8 @@ |
386 | 386 | had marked them as having created another account, when their last account |
387 | 387 | creation had actually failed. |
388 | 388 | * (bug 12647) Allow autogenerated edit summary messages to be blanked with '-' |
| 389 | +* (bug 16026) 'Revision-info' and 'revision-info-current' both accept wiki |
| 390 | + markup now. |
389 | 391 | |
390 | 392 | === API changes in 1.14 === |
391 | 393 | |