diff options
author | Simon Rettberg | 2017-04-10 12:32:37 +0200 |
---|---|---|
committer | Simon Rettberg | 2017-04-10 12:32:37 +0200 |
commit | 6b1a519b152d6a7a92c527220569f53ed0b95a70 (patch) | |
tree | 5343dca14b110332f744ed97e5e79ea9798edc2c /modules-available/statistics_reporting | |
parent | [apis/cron] Try to catch exceptions when running module cron handler (diff) | |
download | slx-admin-6b1a519b152d6a7a92c527220569f53ed0b95a70.tar.gz slx-admin-6b1a519b152d6a7a92c527220569f53ed0b95a70.tar.xz slx-admin-6b1a519b152d6a7a92c527220569f53ed0b95a70.zip |
[statistics_reporting] Don't include perUser and perClient in remote report
Diffstat (limited to 'modules-available/statistics_reporting')
-rw-r--r-- | modules-available/statistics_reporting/inc/remotereport.inc.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/modules-available/statistics_reporting/inc/remotereport.inc.php b/modules-available/statistics_reporting/inc/remotereport.inc.php index a2234849..4c5f604b 100644 --- a/modules-available/statistics_reporting/inc/remotereport.inc.php +++ b/modules-available/statistics_reporting/inc/remotereport.inc.php @@ -73,8 +73,6 @@ class RemoteReport GetData::$salt = bin2hex(Util::randomBytes(20, false)); $data = GetData::total(GETDATA_ANONYMOUS); $data['perLocation'] = GetData::perLocation(GETDATA_ANONYMOUS); - $data['perClient'] = GetData::perClient(GETDATA_ANONYMOUS); - $data['perUser'] = GetData::perUser(GETDATA_ANONYMOUS); $data['perVM'] = GetData::perVM(GETDATA_ANONYMOUS); $data['tsFrom'] = $from; $data['tsTo'] = $to; |