summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 b0c830ef..b36b45ac 100644
--- a/modules-available/passthrough/page.inc.php
+++ b/modules-available/passthrough/page.inc.php
@@ -59,7 +59,7 @@ class Page_Passthrough extends Page
$list = [];
$groups = [];
foreach (Request::post('enabled', [], 'array') as $groupId) {
- $groupId = (int)$groupId;
+ $groupId = (string)$groupId;
$list[] = [$groupId, $locationId];
$groups[] = $groupId;
}