Last modified: 2008-01-09 01:09:11 UTC
The following HTML fragment is rendered during an edit conflict: <textarea tabindex=6 id='wpTextbox2' name="wpTextbox2" rows='25' cols='80' wrap='virtual'> Two issues: * tabindex attributes lacks quotes * wrap='virtual' seems to be invalid XHTML according to the XHTML check of validator.w3.org Probably the following line in EditPage.php needs to be changed from: $wgOut->addHTML( "<textarea tabindex=6 id='wpTextbox2' name=\"wpTextbox2\" rows='{$rows}' cols='{$cols}' wrap='virtual'>" into: $wgOut->addHTML( "<textarea tabindex='6' id='wpTextbox2' name=\"wpTextbox2\" rows='{$rows}' cols='{$cols}'>" (not sure about wrap, though) I admit this is quite an unusual use case. Error is found in svn trunk yesterday.
Fixed in r29474.