From 060c831cbdfa499af87443742a47d780834b7201 Mon Sep 17 00:00:00 2001 From: Andrew Garrett Date: Tue, 17 Feb 2009 23:33:57 +0000 Subject: [PATCH] Fix double-escaping in r47202. --- includes/EditPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/EditPage.php b/includes/EditPage.php index 0d97fcbdee..54f853079e 100644 --- a/includes/EditPage.php +++ b/includes/EditPage.php @@ -1327,7 +1327,7 @@ class EditPage { # if this is a comment, show a subject line at the top, which is also the edit summary. # Otherwise, show a summary field at the bottom - $summarytext = htmlspecialchars( $wgContLang->recodeForEdit( $this->summary ) ); # FIXME + $summarytext = $wgContLang->recodeForEdit( $this->summary ); # If a blank edit summary was previously provided, and the appropriate # user preference is active, pass a hidden tag as wpIgnoreBlankSummary. This will stop the -- 2.20.1