r108359 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r108358‎ | r108359 | r108360 >
Date:17:29, 8 January 2012
Author:platonides
Status:ok (Comments)
Tags:
Comment:
r92975 caused wikitable in MediaWiki:Recentchangestext (eg. enwiki)
as it was no longer beginning a new line.
Modified paths:
  • /trunk/phase3/includes/specials/SpecialRecentchanges.php (modified) (history)

Diff [purge]

Index: trunk/phase3/includes/specials/SpecialRecentchanges.php
@@ -624,7 +624,7 @@
625625 $this->getOutput()->addWikiText(
626626 Html::rawElement( 'p',
627627 array( 'lang' => $wgContLang->getCode(), 'dir' => $wgContLang->getDir() ),
628 - wfMsgForContentNoTrans( 'recentchangestext' )
 628+ "\n" . wfMsgForContentNoTrans( 'recentchangestext' ) . "\n"
629629 ), false );
630630 }
631631

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r92975Add lang & dir attributes around the recentchangestext message, because it is...robin00:56, 24 July 2011

Comments

#Comment by Nikerabbit (talk | contribs)   07:18, 9 January 2012

Wikitable accidentally what?

#Comment by MaxSem (talk | contribs)   07:39, 9 January 2012

Not get parsed.

#Comment by Platonides (talk | contribs)   22:36, 9 January 2012

Thanks MaxSem, I accidentally my commit message. :)

Status & tagging log