Index: trunk/phase3/includes/OutputPage.php |
— | — | @@ -834,7 +834,8 @@ |
835 | 835 | } |
836 | 836 | $rows = $wgUser->getOption( 'rows' ); |
837 | 837 | $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'>" . |
839 | 840 | htmlspecialchars( $source ) . "\n</textarea>"; |
840 | 841 | $this->addHTML( $text ); |
841 | 842 | } |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -118,6 +118,8 @@ |
119 | 119 | * (bug 5497) regeression in HTML normalization in 1.6 (unclosed <li>,<dd>,<dt>) |
120 | 120 | * (bug 5709) Allow customisation of separator for categories |
121 | 121 | * (bug 5684) Introduce Special:Randomredirect |
| 122 | +* (bug 5611) Add a name attribute to the text box containing source text in |
| 123 | + read-only pages |
122 | 124 | |
123 | 125 | == Compatibility == |
124 | 126 | |