Index: trunk/extensions/ConfirmAccount/dataclasses/ConfirmAccount.class.php |
— | — | @@ -145,7 +145,7 @@ |
146 | 146 | public static function getOpenRequestCount( $type ) { |
147 | 147 | $dbr = wfGetDB( DB_SLAVE ); |
148 | 148 | $open = (int)$dbr->selectField( 'account_requests', 'COUNT(*)', |
149 | | - array( 'acr_type' => $type, 'acr_deleted' => 0, 'acr_held IS NOT NULL' ), |
| 149 | + array( 'acr_type' => $type, 'acr_deleted' => 0, 'acr_held IS NULL' ), |
150 | 150 | __METHOD__ |
151 | 151 | ); |
152 | 152 | $held = (int)$dbr->selectField( 'account_requests', 'COUNT(*)', |
Index: trunk/extensions/ConfirmAccount/presentation/specialpages/actions/ConfirmAccount_body.php |
— | — | @@ -14,7 +14,7 @@ |
15 | 15 | protected $reqBio; |
16 | 16 | protected $submitType; |
17 | 17 | protected $reqAreas; |
18 | | - protected $reqAreaset; |
| 18 | + protected $reqAreaSet; |
19 | 19 | protected $reason; |
20 | 20 | |
21 | 21 | function __construct() { |