From: Alexandre Emsenhuber Date: Thu, 12 Jun 2008 12:02:28 +0000 (+0000) Subject: (bug 14511) MediaWiki:Delete-legend is no longer double escaped X-Git-Tag: 1.31.0-rc.0~47033 X-Git-Url: http://git.cyclocoop.org/%7B%7B%20url_for%28%27admin_vote_add%27%29%20%7D%7D?a=commitdiff_plain;h=6dfeec6df1a83eb4c0e248792cda327c0a521884;p=lhc%2Fweb%2Fwiklou.git (bug 14511) MediaWiki:Delete-legend is no longer double escaped --- 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' ) . " " .