Index: trunk/phase3/includes/specials/SpecialActiveusers.php |
— | — | @@ -51,7 +51,7 @@ |
52 | 52 | $dbr = wfGetDB( DB_SLAVE ); |
53 | 53 | $conds = array( 'rc_user > 0' ); // Users - no anons |
54 | 54 | $conds[] = 'ipb_deleted IS NULL'; // don't show hidden names |
55 | | - $conds[] = 'rc_log_type IS NULL OR rc_log_type != "newusers"'; |
| 55 | + $conds[] = "rc_log_type IS NULL OR rc_log_type != 'newusers'"; |
56 | 56 | if( $this->requestedUser != '' ) { |
57 | 57 | $conds[] = 'rc_user_text >= ' . $dbr->addQuotes( $this->requestedUser ); |
58 | 58 | } |
— | — | @@ -156,4 +156,4 @@ |
157 | 157 | $wgOut->addHTML( $s ); |
158 | 158 | } |
159 | 159 | |
160 | | -} |
\ No newline at end of file |
| 160 | +} |