From e0167ff5aa2ed4c43d9807b663ba4543f75dc3f4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Niklas=20Laxstr=C3=B6m?= Date: Sat, 6 Dec 2014 10:48:23 +0100 Subject: [PATCH] Escape parentheses message on watchlist pages Change-Id: Ie9943d7da81d16fcd95558f681af68ef9d392bfe --- includes/specials/SpecialEditWatchlist.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() ); } } -- 2.20.1