From: Alexandre Emsenhuber Date: Sat, 9 Jul 2011 09:01:50 +0000 (+0000) Subject: Fix for r91651: don't escape HTML X-Git-Tag: 1.31.0-rc.0~28965 X-Git-Url: https://git.cyclocoop.org/%7B%24admin_url%7Dmembres/%7B%7B%20url_for%28%27vote%27%2C%20idvote=vote.voteid%29%20%7D%7D?a=commitdiff_plain;h=0e06ab19c9ba234c2ad1c6d4569b527185f6e54c;p=lhc%2Fweb%2Fwiklou.git Fix for r91651: don't escape HTML --- diff --git a/includes/ChangeTags.php b/includes/ChangeTags.php index 6c8f4cbafa..c8e522dfec 100644 --- a/includes/ChangeTags.php +++ b/includes/ChangeTags.php @@ -162,7 +162,7 @@ class ChangeTags { if ( !$wgUseTagFilter || !count( self::listDefinedTags() ) ) return $fullForm ? '' : array(); - $data = array( Xml::label( wfMsgExt( 'tag-filter', 'parseinline' ), 'tagfilter' ), + $data = array( Html::rawElement( 'label', array( 'for' => 'tagfilter' ), wfMsgExt( 'tag-filter', 'parseinline' ) ), Xml::input( 'tagfilter', 20, $selected ) ); if ( !$fullForm ) {