Index: trunk/phase3/RELEASE-NOTES-1.19 |
— | — | @@ -153,6 +153,7 @@ |
154 | 154 | was specified. |
155 | 155 | * (bug 30368) Special:Newpages now shows the new page name for moved pages |
156 | 156 | * (bug 1697) The way to search blocked usernames in block log should be clearer |
| 157 | +* (bug 32412) TOC links on [[Special:EditWatchlist]] now points to the fieldset |
157 | 158 | |
158 | 159 | === API changes in 1.19 === |
159 | 160 | * (bug 19838) siprop=interwikimap can now use the interwiki cache. |
Index: trunk/phase3/includes/specials/SpecialEditWatchlist.php |
— | — | @@ -559,6 +559,10 @@ |
560 | 560 | ? wfMsgHtml( 'blanknamespace' ) |
561 | 561 | : htmlspecialchars( $this->getContext()->getLanguage()->getFormattedNsText( $namespace ) ); |
562 | 562 | } |
| 563 | + |
| 564 | + public function getBody() { |
| 565 | + return $this->displaySection( $this->mFieldTree, '', 'mw-htmlform-' ); |
| 566 | + } |
563 | 567 | } |
564 | 568 | |
565 | 569 | class EditWatchlistCheckboxSeriesField extends HTMLMultiSelectField { |