From efff9257218c45e54a391b62cd25cde4ec3f2ac3 Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Mon, 1 Dec 2008 21:36:20 +0000 Subject: [PATCH] (bug 16026) MediaWiki:Revision-info should accept wikimarkup --- RELEASE-NOTES | 2 ++ includes/Article.php | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) 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 ); } -- 2.20.1