Index: trunk/phase3/includes/SpecialStatistics.php |
— | — | @@ -36,7 +36,7 @@ |
37 | 37 | $total = $row->total; |
38 | 38 | |
39 | 39 | $sql = "SELECT COUNT(user_id) AS total FROM user " . |
40 | | - "WHERE user_rights <> ''"; |
| 40 | + "WHERE user_rights LIKE '%sysop%'"; |
41 | 41 | $res = wfQuery( $sql, $fname ); |
42 | 42 | $row = wfFetchObject( $res ); |
43 | 43 | $admins = $row->total; |