Index: trunk/phase3/includes/specials/SpecialContributions.php |
— | — | @@ -34,6 +34,8 @@ |
35 | 35 | $this->opts['contribs'] = 'newbie'; |
36 | 36 | } |
37 | 37 | |
| 38 | + $this->opts['deletedOnly'] = ( $wgRequest->getVal( 'deletedOnly' ) == '1' ); |
| 39 | + |
38 | 40 | if( !strlen( $target ) ) { |
39 | 41 | $wgOut->addHTML( $this->getForm() ); |
40 | 42 | return; |
— | — | @@ -64,8 +66,6 @@ |
65 | 67 | $this->opts['namespace'] = ''; |
66 | 68 | } |
67 | 69 | |
68 | | - $this->opts['deletedOnly'] = ( $wgRequest->getVal( 'deletedOnly' ) == '1' ); |
69 | | - |
70 | 70 | $this->opts['tagfilter'] = (string) $wgRequest->getVal( 'tagfilter' ); |
71 | 71 | |
72 | 72 | // Allows reverts to have the bot flag in recent changes. It is just here to |