Index: branches/REL1_18/phase3/RELEASE-NOTES-1.18 |
— | — | @@ -14,6 +14,7 @@ |
15 | 15 | === Changes since 1.18 RC1 === |
16 | 16 | * (bug 32228) regression in Special:Search which did not conserve profile on new search |
17 | 17 | * (bug 32460) Categories were improperly aligned in Simple and CologneBlue |
| 18 | +* (bug 32412) TOC links on [[Special:EditWatchlist]] points to the fieldsets |
18 | 19 | |
19 | 20 | === Changes since 1.18 beta 1 === |
20 | 21 | * (bug 31886) Wrong titles redirecting to Special:Badtitle in the 1.18 deployment. |
Property changes on: branches/REL1_18/phase3/RELEASE-NOTES-1.18 |
___________________________________________________________________ |
Modified: svn:mergeinfo |
21 | 22 | Merged /trunk/phase3/RELEASE-NOTES-1.18:r103896 |
Index: branches/REL1_18/phase3/includes/specials/SpecialEditWatchlist.php |
— | — | @@ -430,7 +430,7 @@ |
431 | 431 | $nsText = $ns == NS_MAIN |
432 | 432 | ? wfMsgHtml( 'blanknamespace' ) |
433 | 433 | : htmlspecialchars( $wgContLang->getFormattedNsText( $ns ) ); |
434 | | - $this->toc .= Linker::tocLine( "mw-htmlform-{$data['section']}", $nsText, ++$tocLength, 1 ) . Linker::tocLineEnd(); |
| 434 | + $this->toc .= Linker::tocLine( "editwatchlist-{$data['section']}", $nsText, ++$tocLength, 1 ) . Linker::tocLineEnd(); |
435 | 435 | } |
436 | 436 | $this->toc = Linker::tocList( $this->toc ); |
437 | 437 | } else { |
— | — | @@ -572,6 +572,9 @@ |
573 | 573 | ? wfMsgHtml( 'blanknamespace' ) |
574 | 574 | : htmlspecialchars( $this->getContext()->getLang()->getFormattedNsText( $namespace ) ); |
575 | 575 | } |
| 576 | + public function getBody() { |
| 577 | + return $this->displaySection( $this->mFieldTree, '', 'editwatchlist-' ); |
| 578 | + } |
576 | 579 | } |
577 | 580 | |
578 | 581 | class EditWatchlistCheckboxSeriesField extends HTMLMultiSelectField { |
— | — | @@ -590,4 +593,4 @@ |
591 | 594 | // Need to call into grandparent to be a good citizen. :) |
592 | 595 | return HTMLFormField::validate( $value, $alldata ); |
593 | 596 | } |
594 | | -} |
\ No newline at end of file |
| 597 | +} |