Followup r90775: Fix PHP Notice: Undefined index: deletedonly in /www/w/includes...
authorRaimond Spekking <raymond@users.mediawiki.org>
Sun, 26 Jun 2011 17:36:39 +0000 (17:36 +0000)
committerRaimond Spekking <raymond@users.mediawiki.org>
Sun, 26 Jun 2011 17:36:39 +0000 (17:36 +0000)
includes/specials/SpecialContributions.php

index 0c6560d..9e4078e 100644 (file)
@@ -128,8 +128,8 @@ class SpecialContributions extends SpecialPage {
                        if ( $this->opts['showSizeDiff'] ) {
                                $apiParams['showsizediff'] = true;
                        }
-                       if ( $this->opts['deletedonly'] ) {
-                               $apiParams['deletedonly'] = true;
+                       if ( $this->opts['deletedOnly'] ) {
+                               $apiParams['deletedOnly'] = true;
                        }
                        if ( $this->opts['tagFilter'] !== '' ) {
                                $apiParams['tagfilter'] = $this->opts['tagFilter'];