* (bug 12553) Fixed invalid XHTML in edit conflict screen
authorBrion Vibber <brion@users.mediawiki.org>
Wed, 9 Jan 2008 01:08:59 +0000 (01:08 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Wed, 9 Jan 2008 01:08:59 +0000 (01:08 +0000)
RELEASE-NOTES
includes/EditPage.php

index 3495ffc..45bdc1a 100644 (file)
@@ -291,6 +291,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
   Fixes 'root'-style rewrite configurations
 * (bug 12493) Removed hardcoded MAX_FILE_SIZE from Special:Import upload form
 * (bug 12489) Special:Userrights listed in restricted section again
+* (bug 12553) Fixed invalid XHTML in edit conflict screen
 
 
 == Parser changes in 1.12 ==
index cd028e2..4846196 100644 (file)
@@ -1352,7 +1352,7 @@ END
                        $de->showDiff( wfMsg( "yourtext" ), wfMsg( "storedversion" ) );
 
                        $wgOut->addWikiText( '==' . wfMsg( "yourtext" ) . '==' );
-                       $wgOut->addHTML( "<textarea tabindex=6 id='wpTextbox2' name=\"wpTextbox2\" rows='{$rows}' cols='{$cols}' wrap='virtual'>"
+                       $wgOut->addHTML( "<textarea tabindex='6' id='wpTextbox2' name=\"wpTextbox2\" rows='{$rows}' cols='{$cols}'>"
                                . htmlspecialchars( $this->safeUnicodeOutput( $this->textbox2 ) ) . "\n</textarea>" );
                }
                $wgOut->addHTML( $this->editFormTextBottom );