r13858 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r13857‎ | r13858 | r13859 >
Date:01:30, 25 April 2006
Author:robchurch
Status:old
Tags:
Comment:
(bug 5611) Add a name attribute to the text box containing source text in read-only pages
Modified paths:
  • /trunk/phase3/RELEASE-NOTES (modified) (history)
  • /trunk/phase3/includes/OutputPage.php (modified) (history)

Diff [purge]

Index: trunk/phase3/includes/OutputPage.php
@@ -834,7 +834,8 @@
835835 }
836836 $rows = $wgUser->getOption( 'rows' );
837837 $cols = $wgUser->getOption( 'cols' );
838 - $text = "\n<textarea cols='$cols' rows='$rows' readonly='readonly'>" .
 838+
 839+ $text = "\n<textarea name='wpTextbox1' id='wpTextbox1' cols='$cols' rows='$rows' readonly='readonly'>" .
839840 htmlspecialchars( $source ) . "\n</textarea>";
840841 $this->addHTML( $text );
841842 }
Index: trunk/phase3/RELEASE-NOTES
@@ -118,6 +118,8 @@
119119 * (bug 5497) regeression in HTML normalization in 1.6 (unclosed <li>,<dd>,<dt>)
120120 * (bug 5709) Allow customisation of separator for categories
121121 * (bug 5684) Introduce Special:Randomredirect
 122+* (bug 5611) Add a name attribute to the text box containing source text in
 123+ read-only pages
122124
123125 == Compatibility ==
124126

Status & tagging log