summaryrefslogtreecommitdiffstats
path: root/modules-available/passthrough
diff options
context:
space:
mode:
authorSimon Rettberg2022-07-06 16:25:32 +0200
committerSimon Rettberg2022-07-06 16:25:32 +0200
commit21140a82955a0e56dc7a796bef9bf51f702e2569 (patch)
treefb4f5db0911d258b0c1cc291375d3eafd8f33f39 /modules-available/passthrough
parent[vmstore] Benchmark: Print all output in timeout (diff)
downloadslx-admin-21140a82955a0e56dc7a796bef9bf51f702e2569.tar.gz
slx-admin-21140a82955a0e56dc7a796bef9bf51f702e2569.tar.xz
slx-admin-21140a82955a0e56dc7a796bef9bf51f702e2569.zip
[passthrough] Adapt to query builder changes
Diffstat (limited to 'modules-available/passthrough')
-rw-r--r--modules-available/passthrough/page.inc.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules-available/passthrough/page.inc.php b/modules-available/passthrough/page.inc.php
index de63673a..89ee7719 100644
--- a/modules-available/passthrough/page.inc.php
+++ b/modules-available/passthrough/page.inc.php
@@ -105,7 +105,7 @@ class Page_Passthrough extends Page
$q->addGlobalColumn('class');
$q->addGlobalColumn('@PASSTHROUGH');
$rows = [];
- foreach ($q->query('shw.hwid') as $row) {
+ foreach ($q->query('`shw`.`hwid`') as $row) {
$row['ptlist'] = Passthrough::getGroupDropdown($row);
$rows[] = $row;
}