r103898 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r103897‎ | r103898 | r103899 >
Date:14:42, 22 November 2011
Author:hashar
Status:ok
Tags:
Comment:
MFT to REL1_18 r103896

(bug 32412) TOC links on [[Special:EditWatchlist]] points to the fieldsets
Modified paths:
  • /branches/REL1_18/phase3/RELEASE-NOTES-1.18 (modified) (history)
  • /branches/REL1_18/phase3/includes/specials/SpecialEditWatchlist.php (modified) (history)

Diff [purge]

Index: branches/REL1_18/phase3/RELEASE-NOTES-1.18
@@ -14,6 +14,7 @@
1515 === Changes since 1.18 RC1 ===
1616 * (bug 32228) regression in Special:Search which did not conserve profile on new search
1717 * (bug 32460) Categories were improperly aligned in Simple and CologneBlue
 18+* (bug 32412) TOC links on [[Special:EditWatchlist]] points to the fieldsets
1819
1920 === Changes since 1.18 beta 1 ===
2021 * (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
2122 Merged /trunk/phase3/RELEASE-NOTES-1.18:r103896
Index: branches/REL1_18/phase3/includes/specials/SpecialEditWatchlist.php
@@ -430,7 +430,7 @@
431431 $nsText = $ns == NS_MAIN
432432 ? wfMsgHtml( 'blanknamespace' )
433433 : 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();
435435 }
436436 $this->toc = Linker::tocList( $this->toc );
437437 } else {
@@ -572,6 +572,9 @@
573573 ? wfMsgHtml( 'blanknamespace' )
574574 : htmlspecialchars( $this->getContext()->getLang()->getFormattedNsText( $namespace ) );
575575 }
 576+ public function getBody() {
 577+ return $this->displaySection( $this->mFieldTree, '', 'editwatchlist-' );
 578+ }
576579 }
577580
578581 class EditWatchlistCheckboxSeriesField extends HTMLMultiSelectField {
@@ -590,4 +593,4 @@
591594 // Need to call into grandparent to be a good citizen. :)
592595 return HTMLFormField::validate( $value, $alldata );
593596 }
594 -}
\ No newline at end of file
 597+}

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r103894(bug 32412) TOC links on [[Special:EditWatchlist]] now points to the fieldsethashar14:21, 22 November 2011
r103896(bug 32412) TOC links on [[Special:EditWatchlist]] points to the fieldsets...hashar14:37, 22 November 2011

Status & tagging log