소스 검색

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

Frederic G. MARAND 13 년 전
부모
커밋
e4b8b51e7f
1개의 변경된 파일0개의 추가작업 그리고 1개의 파일을 삭제
  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';