mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Gadgets
synced 2024-11-28 17:20:18 +00:00
Fix escaping in Special:GadgetUsage.
wfEscapeWikiText() is incorrect in this context. It escapes HTML, but also escapes a whole bunch of other stuff that is not needed here Also: Prefer html::element for escaping, because it makes it easier to see at a glance everything is escaped. Change-Id: I91b0722ea98f1e20339c7e0aa839c1073b778ed5
This commit is contained in:
parent
e009534e5c
commit
246329b7fc
|
@ -71,7 +71,7 @@ class SpecialGadgetUsage extends QueryPage {
|
||||||
|
|
||||||
$headers = array( 'gadgetusage-gadget', 'gadgetusage-usercount' );
|
$headers = array( 'gadgetusage-gadget', 'gadgetusage-usercount' );
|
||||||
foreach( $headers as $h ) {
|
foreach( $headers as $h ) {
|
||||||
$html .= Html::rawElement( 'th', array(), $this->msg( $h )->escaped() );
|
$html .= Html::element( 'th', array(), $this->msg( $h )->text() );
|
||||||
}
|
}
|
||||||
$html .= Html::closeElement( 'tr' );
|
$html .= Html::closeElement( 'tr' );
|
||||||
$this->getOutput()->addHTML( $html );
|
$this->getOutput()->addHTML( $html );
|
||||||
|
@ -80,15 +80,15 @@ class SpecialGadgetUsage extends QueryPage {
|
||||||
/**
|
/**
|
||||||
* @param Skin $skin
|
* @param Skin $skin
|
||||||
* @param object $result Result row
|
* @param object $result Result row
|
||||||
* @return string bool
|
* @return string|bool String of HTML
|
||||||
*/
|
*/
|
||||||
public function formatResult( $skin, $result ) {
|
public function formatResult( $skin, $result ) {
|
||||||
$gadgetTitle = wfEscapeWikiText( substr( $result->title, 7 ) );
|
$gadgetTitle = substr( $result->title, 7 );
|
||||||
$gadgetUserCount = $this->getLanguage()->formatNum( $result->value );
|
$gadgetUserCount = $this->getLanguage()->formatNum( $result->value );
|
||||||
if ( $gadgetTitle ) {
|
if ( $gadgetTitle ) {
|
||||||
$html = Html::openElement( 'tr', array() );
|
$html = Html::openElement( 'tr', array() );
|
||||||
$html .= Html::rawElement( 'td', array(), $gadgetTitle );
|
$html .= Html::element( 'td', array(), $gadgetTitle );
|
||||||
$html .= Html::rawElement( 'td', array(), $gadgetUserCount );
|
$html .= Html::element( 'td', array(), $gadgetUserCount );
|
||||||
$html .= Html::closeElement( 'tr' );
|
$html .= Html::closeElement( 'tr' );
|
||||||
return $html;
|
return $html;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue