summaryrefslogtreecommitdiffstats
path: root/modules-available/statistics_reporting/inc/queries.inc.php
diff options
context:
space:
mode:
authorSimon Rettberg2020-06-29 12:59:06 +0200
committerSimon Rettberg2020-07-30 13:27:06 +0200
commite7161cf21fc29c4de60e3444f7ea079e991b889a (patch)
treef461a4e23eef927c392c87df19066c7cef7a95ec /modules-available/statistics_reporting/inc/queries.inc.php
parent[locationinfo] Add option to show hostnames (diff)
downloadslx-admin-e7161cf21fc29c4de60e3444f7ea079e991b889a.tar.gz
slx-admin-e7161cf21fc29c4de60e3444f7ea079e991b889a.tar.xz
slx-admin-e7161cf21fc29c4de60e3444f7ea079e991b889a.zip
[statistics_reporting] Fix numer of unique users and server CPU model
Diffstat (limited to 'modules-available/statistics_reporting/inc/queries.inc.php')
-rw-r--r--modules-available/statistics_reporting/inc/queries.inc.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/modules-available/statistics_reporting/inc/queries.inc.php b/modules-available/statistics_reporting/inc/queries.inc.php
index 39e43765..c77f0ed8 100644
--- a/modules-available/statistics_reporting/inc/queries.inc.php
+++ b/modules-available/statistics_reporting/inc/queries.inc.php
@@ -402,8 +402,7 @@ class Queries
{
$res = Database::queryFirst("SELECT Count(DISTINCT username) as `total`
FROM statistic
- WHERE (dateline BETWEEN $from AND $to) AND typeid = '.vmchooser-session-name'
- GROUP BY username");
+ WHERE (dateline BETWEEN $from AND $to) AND typeid = '.vmchooser-session-name'");
return (int)$res['total'];
}