mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Thanks
synced 2024-11-15 02:54:23 +00:00
Attribute value is double escaped
Change-Id: Ibf2e1f9cae5c30ed0871de3ad3598b1bd13094ec Html::element() already escapes attribuate values, there is no need to escape it explicitly again
This commit is contained in:
parent
61abb7cac0
commit
af8164814d
|
@ -35,7 +35,7 @@ class ThanksHooks {
|
|||
}
|
||||
if ( $recipientAllowed && !$recipient->isAnon() ) {
|
||||
// Add 'thank' link
|
||||
$tooltip = wfMessage( 'thanks-thank-tooltip' )->escaped();
|
||||
$tooltip = wfMessage( 'thanks-thank-tooltip' )->text();
|
||||
$thankLink = Html::element(
|
||||
'a',
|
||||
array(
|
||||
|
|
Loading…
Reference in a new issue