From 6dfeec6df1a83eb4c0e248792cda327c0a521884 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Thu, 12 Jun 2008 12:02:28 +0000 Subject: [PATCH] (bug 14511) MediaWiki:Delete-legend is no longer double escaped --- RELEASE-NOTES | 1 + includes/Article.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 96e595dad5..c5e948cebe 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -366,6 +366,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN fail due to database permission or other error * (bug 14500) Site feed (Recentchanges) no longer shows up on the actual recent changes page. +* (bug 14511) MediaWiki:Delete-legend is no longer double escaped === API changes in 1.13 === diff --git a/includes/Article.php b/includes/Article.php index d709f62730..2038359e96 100644 --- a/includes/Article.php +++ b/includes/Article.php @@ -2178,7 +2178,7 @@ class Article { $form = Xml::openElement( 'form', array( 'method' => 'post', 'action' => $this->mTitle->getLocalURL( 'action=delete' . $par ), 'id' => 'deleteconfirm' ) ) . Xml::openElement( 'fieldset', array( 'id' => 'mw-delete-table' ) ) . - Xml::element( 'legend', null, wfMsg( 'delete-legend' ) ) . + Xml::tags( 'legend', null, wfMsgExt( 'delete-legend', array( 'parsemag', 'escapenoentities' ) ) ) . Xml::openElement( 'table' ) . " " . -- 2.20.1