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 @@
625
625
$this->getOutput()->addWikiText(
626
626
Html::rawElement( 'p',
627
627
array( 'lang' => $wgContLang->getCode(), 'dir' => $wgContLang->getDir() ),
628
- wfMsgForContentNoTrans( 'recentchangestext' )
628
+ "\n" . wfMsgForContentNoTrans( 'recentchangestext' ) . "\n"
629
629
), false );
630
630
}
631
631
Past revisions this follows-up on
Revision
Commit summary
Author
Date
r92975
Add lang & dir attributes around the recentchangestext message, because it is...
robin
00: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
07:43, 9 January 2012
Nikerabbit
(
talk
|
contribs
)
changed the
status
of r108359
[
removed:
new
added:
ok]