* (bug 13428) Fix regression in protection form layout HTML validity
authorBrion Vibber <brion@users.mediawiki.org>
Wed, 19 Mar 2008 00:08:58 +0000 (00:08 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Wed, 19 Mar 2008 00:08:58 +0000 (00:08 +0000)
a ; in place of a . there...

RELEASE-NOTES
includes/ProtectionForm.php

index d2fba67..ce88512 100644 (file)
@@ -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 ===
index bd16063..6d3264c 100644 (file)
@@ -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' ) .
                        "<tr>\n";