From: Niklas Laxström Date: Sat, 6 Dec 2014 09:48:23 +0000 (+0100) Subject: Escape parentheses message on watchlist pages X-Git-Tag: 1.31.0-rc.0~12965 X-Git-Url: https://git.cyclocoop.org/%28%28?a=commitdiff_plain;h=e0167ff5aa2ed4c43d9807b663ba4543f75dc3f4;p=lhc%2Fweb%2Fwiklou.git Escape parentheses message on watchlist pages Change-Id: Ie9943d7da81d16fcd95558f681af68ef9d392bfe --- diff --git a/includes/specials/SpecialEditWatchlist.php b/includes/specials/SpecialEditWatchlist.php index 50a52b8bb7..ffe7892e8b 100644 --- a/includes/specials/SpecialEditWatchlist.php +++ b/includes/specials/SpecialEditWatchlist.php @@ -760,7 +760,7 @@ class SpecialEditWatchlist extends UnlistedSpecialPage { return Html::rawElement( 'span', array( 'class' => 'mw-watchlist-toollinks' ), - wfMessage( 'parentheses', $wgLang->pipeList( $tools ) )->text() + wfMessage( 'parentheses' )->rawParams( $wgLang->pipeList( $tools ) )->escaped() ); } }