diff options
author | Simon Rettberg | 2017-12-01 12:44:01 +0100 |
---|---|---|
committer | Simon Rettberg | 2017-12-01 12:44:01 +0100 |
commit | e02352b47279a6a7bb2a815116e94f71f252d973 (patch) | |
tree | 3a0acd113825e193e4ddd5ed7ffe4a07d6db38fb /modules-available/locationinfo/inc | |
parent | [statistics, roomplanner, locationinfo] Ignore machines with runmode:isclient==0 (diff) | |
download | slx-admin-e02352b47279a6a7bb2a815116e94f71f252d973.tar.gz slx-admin-e02352b47279a6a7bb2a815116e94f71f252d973.tar.xz slx-admin-e02352b47279a6a7bb2a815116e94f71f252d973.zip |
[runmode] Fix client filter logic
Diffstat (limited to 'modules-available/locationinfo/inc')
-rw-r--r-- | modules-available/locationinfo/inc/infopanel.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules-available/locationinfo/inc/infopanel.inc.php b/modules-available/locationinfo/inc/infopanel.inc.php index aa4741ee..94f264bb 100644 --- a/modules-available/locationinfo/inc/infopanel.inc.php +++ b/modules-available/locationinfo/inc/infopanel.inc.php @@ -86,7 +86,7 @@ class InfoPanel $ignoreList = array(); if (Module::isAvailable('runmode')) { // Ignore clients with special runmode not marked as still being a client - $ignoreList = RunMode::getAllClients(false, true); + $ignoreList = RunMode::getAllClients(false, false); } $positionCol = $withPosition ? 'm.position,' : ''; |