From 44a34dbce85b399a8312e82139c6c7e0b142707a Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 19 Mar 2008 00:08:58 +0000 Subject: [PATCH] * (bug 13428) Fix regression in protection form layout HTML validity a ; in place of a . there... --- RELEASE-NOTES | 1 + includes/ProtectionForm.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index d2fba67f7c..ce88512c1b 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -103,6 +103,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN * (bug 13403) Fix cache invalidation of history pages when old revisions change * (bug 11563) Deprecated SearchMySQL4 class; merged code to SearchMySQL * (bug 12801) Fix link in subtitle message in AJAX search +* (bug 13428) Fix regression in protection form layout HTML validity === API changes in 1.13 === diff --git a/includes/ProtectionForm.php b/includes/ProtectionForm.php index bd1606362f..6d3264c606 100644 --- a/includes/ProtectionForm.php +++ b/includes/ProtectionForm.php @@ -227,7 +227,7 @@ class ProtectionForm { $out .= Xml::openElement( 'fieldset' ) . Xml::element( 'legend', null, wfMsg( 'protect-legend' ) ) . - Xml::openElement( 'table', array( 'id' => 'mwProtectSet' ) ); + Xml::openElement( 'table', array( 'id' => 'mwProtectSet' ) ) . Xml::openElement( 'tbody' ) . "\n"; -- 2.20.1