From 7002a2850da7f346aecb1dfebc8a52782826583a Mon Sep 17 00:00:00 2001 From: Raimond Spekking Date: Mon, 19 Oct 2009 14:26:16 +0000 Subject: [PATCH] * bug 21182 Fix invalid HTML in Special:Listgrouprights Patch by Platonides --- RELEASE-NOTES | 1 + includes/specials/SpecialListgrouprights.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index b0403945b7..9acf54ce02 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -570,6 +570,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN * (bug 20256) Fixed SQL errors on Special:Recentchanges and Special:Recentchangeslinked on SQLite backend * (bug 20880) Fixed updater failure on SQLite backend +* (bug 21182) Fixed invalid HTML in Special:Listgrouprights == API changes in 1.16 == diff --git a/includes/specials/SpecialListgrouprights.php b/includes/specials/SpecialListgrouprights.php index 568866f85f..82aaae2a78 100644 --- a/includes/specials/SpecialListgrouprights.php +++ b/includes/specials/SpecialListgrouprights.php @@ -109,7 +109,7 @@ class SpecialListGroupRights extends SpecialPage { $wgOut->addHTML( Xml::closeElement( 'table' ) . "\n

\n" ); - $wgOut->wrapWikiMsg( "
\n$1
",'listgrouprights-key' ); + $wgOut->wrapWikiMsg( "
\n$1\n
", 'listgrouprights-key' ); } /** -- 2.20.1