From: Brion Vibber Date: Wed, 19 Mar 2008 00:08:58 +0000 (+0000) Subject: * (bug 13428) Fix regression in protection form layout HTML validity X-Git-Tag: 1.31.0-rc.0~48998 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/password.php?a=commitdiff_plain;h=44a34dbce85b399a8312e82139c6c7e0b142707a;p=lhc%2Fweb%2Fwiklou.git * (bug 13428) Fix regression in protection form layout HTML validity a ; in place of a . there... --- 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";