r81065 MediaWiki - Code Review archive
Repository:
MediaWiki
Revision:
<
r81064
|
r81065
|
r81066
>
Date:
23:07, 26 January 2011
Author:
catrope
Status:
ok
Tags:
Comment:
Followup
r63808
: escape wiki name with htmlspecialchars
Modified paths:
/trunk/extensions/CentralAuth/SpecialWikiSets.php
(modified) (
history
)
Diff
[
purge
]
Index: trunk/extensions/CentralAuth/SpecialWikiSets.php
—
—
@@ -166,7 +166,8 @@
167
167
sort( $list );
168
168
$html = '<ul>';
169
169
foreach ( $list as $wiki ) {
170
- $html .= "<li>{$wiki}</li>";
170
+ $escWiki = htmlspecialchars( $wiki );
171
+ $html .= "<li>{$escWiki}</li>";
171
172
}
172
173
$html .= '</ul>';
173
174
return $html;
Follow-up revisions
Revision
Commit summary
Author
Date
r81079
1.17: MFT
r80507
,
r80634
,
r80770
,
r80961
,
r80978
,
r80985
,
r81042
,
r81060
,
r81...
catrope
01:15, 27 January 2011
Past revisions this follows-up on
Revision
Commit summary
Author
Date
r63808
* (
bug 22054
) Refactor Special:EditWikiSets so it has read-only mode for non-...
vasilievvv
08:31, 16 March 2010
Status & tagging log
14:52, 19 April 2011
😂
(
talk
|
contribs
)
changed the
status
of r81065
[
removed:
new
added:
ok]
01:16, 27 January 2011
Catrope
(
talk
|
contribs
)
changed the
tags
for r81065
[
removed:
1.17]
23:08, 26 January 2011
Catrope
(
talk
|
contribs
)
changed the
tags
for r81065
[
added:
1.17]