summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo
diff options
context:
space:
mode:
authorSimon Rettberg2017-12-01 12:44:01 +0100
committerSimon Rettberg2017-12-01 12:44:01 +0100
commite02352b47279a6a7bb2a815116e94f71f252d973 (patch)
tree3a0acd113825e193e4ddd5ed7ffe4a07d6db38fb /modules-available/locationinfo
parent[statistics, roomplanner, locationinfo] Ignore machines with runmode:isclient==0 (diff)
downloadslx-admin-e02352b47279a6a7bb2a815116e94f71f252d973.tar.gz
slx-admin-e02352b47279a6a7bb2a815116e94f71f252d973.tar.xz
slx-admin-e02352b47279a6a7bb2a815116e94f71f252d973.zip
[runmode] Fix client filter logic
Diffstat (limited to 'modules-available/locationinfo')
-rw-r--r--modules-available/locationinfo/inc/infopanel.inc.php2
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,' : '';