From: Matěj Suchánek Date: Wed, 20 Sep 2017 14:41:40 +0000 (+0200) Subject: Avoid double escaping headers in InfoAction X-Git-Tag: 1.31.0-rc.0~1911^2 X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=commitdiff_plain;h=7b28f7756ed046c9ee62931e7c63d133beea0bf0;ds=sidebyside Avoid double escaping headers in InfoAction Bug: T111763 Change-Id: I4f582ce5785448a4cb48f3a1d56371eddf38a232 --- diff --git a/includes/actions/InfoAction.php b/includes/actions/InfoAction.php index c5cd89f14b..62f7ddfc1a 100644 --- a/includes/actions/InfoAction.php +++ b/includes/actions/InfoAction.php @@ -128,7 +128,7 @@ class InfoAction extends FormlessAction { // pageinfo-header-basic, pageinfo-header-edits, pageinfo-header-restrictions, // pageinfo-header-properties, pageinfo-category-info $content .= $this->makeHeader( - $this->msg( "pageinfo-${header}" )->escaped(), + $this->msg( "pageinfo-${header}" )->text(), "mw-pageinfo-${header}" ) . "\n"; $table = "\n";