Index: trunk/phase3/includes/specials/SpecialContributions.php |
— | — | @@ -58,7 +58,7 @@ |
59 | 59 | $this->opts['contribs'] = 'newbie'; |
60 | 60 | } |
61 | 61 | |
62 | | - $this->opts['deletedOnly'] = $wgRequest->getCheck( 'deletedOnly' ); |
| 62 | + $this->opts['deletedOnly'] = $wgRequest->getBool( 'deletedOnly' ); |
63 | 63 | |
64 | 64 | if( !strlen( $target ) ) { |
65 | 65 | $wgOut->addHTML( $this->getForm() ); |
— | — | @@ -67,7 +67,7 @@ |
68 | 68 | |
69 | 69 | $this->opts['limit'] = $wgRequest->getInt( 'limit', $wgUser->getOption('rclimit') ); |
70 | 70 | $this->opts['target'] = $target; |
71 | | - $this->opts['topOnly'] = $wgRequest->getCheck( 'topOnly' ); |
| 71 | + $this->opts['topOnly'] = $wgRequest->getBool( 'topOnly' ); |
72 | 72 | |
73 | 73 | $nt = Title::makeTitleSafe( NS_USER, $target ); |
74 | 74 | if( !$nt ) { |