From ddcce8f3aa84f03b40dbe784a2877212801116df Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Fri, 24 Feb 2012 20:22:16 +0000 Subject: [PATCH] r100315: removed now redundant code --- includes/specials/SpecialContributions.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/includes/specials/SpecialContributions.php b/includes/specials/SpecialContributions.php index 3471003199..03820b4338 100644 --- a/includes/specials/SpecialContributions.php +++ b/includes/specials/SpecialContributions.php @@ -44,10 +44,7 @@ class SpecialContributions extends SpecialPage { $this->opts = array(); $request = $this->getRequest(); - if ( $par == 'newbies' ) { - $target = 'newbies'; - $this->opts['contribs'] = 'newbie'; - } elseif ( $par !== null ) { + if ( $par !== null ) { $target = $par; } else { $target = $request->getVal( 'target' ); -- 2.20.1