r44129 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r44128‎ | r44129 | r44130 >
Date:21:36, 1 December 2008
Author:demon
Status:reverted (Comments)
Tags:
Comment:
(bug 16026) MediaWiki:Revision-info should accept wikimarkup
Modified paths:
  • /trunk/phase3/RELEASE-NOTES (modified) (history)
  • /trunk/phase3/includes/Article.php (modified) (history)

Diff [purge]

Index: trunk/phase3/includes/Article.php
@@ -2921,9 +2921,9 @@
29222922 ? 'revision-info-current'
29232923 : 'revision-info';
29242924
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,
29282928 $prevlink, $lnk, $curdiff, $nextlink, $nextdiff ) . "</div>\n\t\t\t";
29292929 $wgOut->setSubtitle( $r );
29302930 }
Index: trunk/phase3/RELEASE-NOTES
@@ -385,6 +385,8 @@
386386 had marked them as having created another account, when their last account
387387 creation had actually failed.
388388 * (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.
389391
390392 === API changes in 1.14 ===
391393

Follow-up revisions

RevisionCommit summaryAuthorDate
r44130Cleanup to r44129, only need parseinline per ialex.demon21:40, 1 December 2008
r44272Revert r44130,r44129 - breaks display of messageaaron18:24, 6 December 2008
r44911Switching some message from raw HTML to wiki (part of this commit fixes bug 1......ialex18:30, 22 December 2008

Comments

#Comment by Nikerabbit (talk | contribs)   11:58, 6 December 2008
#Comment by Aaron Schulz (talk | contribs)   18:24, 6 December 2008

Reverted in r44272

Status & tagging log