mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-24 07:54:13 +00:00
Tooltips in preference page get double-escaped
bug: 53112 Change-Id: Ic39c807506334c3c5d8251384314c09ae96b3c3a
This commit is contained in:
parent
c4f29b9af9
commit
b85615da7e
|
@ -356,7 +356,7 @@ class EchoHooks {
|
||||||
$categoryMessage = wfMessage( 'echo-category-title-' . $category )->numParams( 1 )->escaped();
|
$categoryMessage = wfMessage( 'echo-category-title-' . $category )->numParams( 1 )->escaped();
|
||||||
$rows[$categoryMessage] = $category;
|
$rows[$categoryMessage] = $category;
|
||||||
if ( isset( $wgEchoNotificationCategories[$category]['tooltip'] ) ) {
|
if ( isset( $wgEchoNotificationCategories[$category]['tooltip'] ) ) {
|
||||||
$tooltips[$categoryMessage] = wfMessage( $wgEchoNotificationCategories[$category]['tooltip'] )->escaped();
|
$tooltips[$categoryMessage] = wfMessage( $wgEchoNotificationCategories[$category]['tooltip'] )->text();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue