r1339 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r1338‎ | r1339 | r1340 >
Date:01:08, 20 May 2003
Author:vibber
Status:old
Tags:
Comment:
Fix admin count to not include bots
Modified paths:
  • /trunk/phase3/includes/SpecialStatistics.php (modified) (history)

Diff [purge]

Index: trunk/phase3/includes/SpecialStatistics.php
@@ -36,7 +36,7 @@
3737 $total = $row->total;
3838
3939 $sql = "SELECT COUNT(user_id) AS total FROM user " .
40 - "WHERE user_rights <> ''";
 40+ "WHERE user_rights LIKE '%sysop%'";
4141 $res = wfQuery( $sql, $fname );
4242 $row = wfFetchObject( $res );
4343 $admins = $row->total;

Status & tagging log