diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2015-12-17 09:15:42 +0100 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2015-12-17 09:44:51 +0100 |
commit | a1789ddde42033f1b05cc4929491214ee6e79383 (patch) | |
tree | 63615735c4ddffaaabf2428946bb26f90899f7bf /includes/specials/SpecialContributions.php | |
parent | 9e06a62f265e3a2aaabecc598d4bc617e06fa32d (diff) |
Update to MediaWiki 1.26.0
Diffstat (limited to 'includes/specials/SpecialContributions.php')
-rw-r--r-- | includes/specials/SpecialContributions.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/includes/specials/SpecialContributions.php b/includes/specials/SpecialContributions.php index c2cd8122..9672580d 100644 --- a/includes/specials/SpecialContributions.php +++ b/includes/specials/SpecialContributions.php @@ -38,6 +38,7 @@ class SpecialContributions extends IncludableSpecialPage { $this->outputHeader(); $out = $this->getOutput(); $out->addModuleStyles( 'mediawiki.special' ); + $this->addHelpLink( 'Help:User contributions' ); $this->opts = array(); $request = $this->getRequest(); @@ -724,7 +725,6 @@ class ContribsPager extends ReverseChronologicalPager { $limit, $descending ); - $pager = $this; /* * This hook will allow extensions to add in additional queries, so they can get their data @@ -749,7 +749,7 @@ class ContribsPager extends ReverseChronologicalPager { ) ); Hooks::run( 'ContribsPager::reallyDoQuery', - array( &$data, $pager, $offset, $limit, $descending ) + array( &$data, $this, $offset, $limit, $descending ) ); $result = array(); @@ -965,14 +965,14 @@ class ContribsPager extends ReverseChronologicalPager { * we're definitely dealing with revision data and we may proceed, if not, we'll leave it * to extensions to subscribe to the hook to parse the row. */ - wfSuppressWarnings(); + MediaWiki\suppressWarnings(); try { $rev = new Revision( $row ); $validRevision = (bool)$rev->getId(); } catch ( Exception $e ) { $validRevision = false; } - wfRestoreWarnings(); + MediaWiki\restoreWarnings(); if ( $validRevision ) { $classes = array(); |