From: Chad Horohoe Date: Mon, 1 Dec 2008 21:36:20 +0000 (+0000) Subject: (bug 16026) MediaWiki:Revision-info should accept wikimarkup X-Git-Tag: 1.31.0-rc.0~44153 X-Git-Url: http://git.cyclocoop.org/data/%24self?a=commitdiff_plain;h=efff9257218c45e54a391b62cd25cde4ec3f2ac3;p=lhc%2Fweb%2Fwiklou.git (bug 16026) MediaWiki:Revision-info should accept wikimarkup --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index f033e4dc20..24fbd0fba0 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -385,6 +385,8 @@ The following extensions are migrated into MediaWiki 1.14: had marked them as having created another account, when their last account creation had actually failed. * (bug 12647) Allow autogenerated edit summary messages to be blanked with '-' +* (bug 16026) 'Revision-info' and 'revision-info-current' both accept wiki + markup now. === API changes in 1.14 === diff --git a/includes/Article.php b/includes/Article.php index 1578e88d7c..0600546937 100644 --- a/includes/Article.php +++ b/includes/Article.php @@ -2921,9 +2921,9 @@ class Article { ? 'revision-info-current' : 'revision-info'; - $r = "\n\t\t\t\t
" . wfMsg( $infomsg, $td, $userlinks, $revision->getID() ) . "
\n" . - - "\n\t\t\t\t
" . $cdel . wfMsg( 'revision-nav', $prevdiff, + $r = "\n\t\t\t\t
" . wfMsgExt( $infomsg, + array( 'parseinline', 'escapenoentities' ), $td, $userlinks, $revision->getID() ) . "
\n" . + "\n\t\t\t\t
" . $cdel . wfMsg( 'revision-nav', $prevdiff, $prevlink, $lnk, $curdiff, $nextlink, $nextdiff ) . "
\n\t\t\t"; $wgOut->setSubtitle( $r ); }