Browse Source

Remove total user count, unneeded with simultaneous active/blocked display

Frederic G. MARAND 13 years ago
parent
commit
e4b8b51e7f
1 changed files with 0 additions and 1 deletions
  1. 0 1
      modules/munin_core/munin_core.module

+ 0 - 1
modules/munin_core/munin_core.module

@@ -112,7 +112,6 @@ function munin_core_munin_api_fetch($graph_name) {
 
       $ret['user_active_count'] = $users[1];
       $ret['user_blocked_count'] = $users[0];
-      $ret['user_count'] = $users[0] + $users[1];
 
 
       $sq = 'SELECT COUNT(*) cnt FROM {sessions} s WHERE s.uid != 0 AND s.timestamp >= UNIX_TIMESTAMP() - 5*60';