r54413 MediaWiki - Code Review archive
Repository:
MediaWiki
Revision:
<
r54412
|
r54413
|
r54414
>
Date:
00:38, 5 August 2009
Author:
simetrical
Status:
ok (
Comments
)
Tags:
Comment:
Make sure to parse RC legend label inline
Avoids unnecessary <p> tags. Pointed out by Nikerabbit on CodeReview
for
r54337
.
Modified paths:
/trunk/phase3/includes/ChangesList.php
(modified) (
history
)
Diff
[
purge
]
Index: trunk/phase3/includes/ChangesList.php
—
—
@@ -160,8 +160,8 @@
161
161
}
162
162
163
163
return '<div class="mw-rc-label-legend">' .
164
- wfMsgWikiHtml( 'recentchanges-label-legend', $wgLang->commaList( $flags ) )
165
- . '</div>';
164
+ wfMsgExt( 'recentchanges-label-legend', 'parseinline',
165
+ $wgLang->commaList( $flags ) ) . '</div>';
166
166
}
167
167
168
168
/**
Past revisions this follows-up on
Revision
Commit summary
Author
Date
r54337
Add wrapper div for RC label legend...
simetrical
00:50, 4 August 2009
Comments
#
Comment by
Simetrical
(
talk
|
contribs
)
00:39, 5 August 2009
Mark fixme like the other RC legend-related commits.
#
Comment by
Werdna
(
talk
|
contribs
)
17:04, 27 August 2009
Seems OK.
Status & tagging log
17:04, 27 August 2009
Werdna
(
talk
|
contribs
)
changed the
status
of r54413
[
removed:
fixme
added:
ok]
00:39, 5 August 2009
Simetrical
(
talk
|
contribs
)
changed the
status
of r54413
[
removed:
new
added:
fixme]