summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--modules-available/usblockoff/api.inc.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules-available/usblockoff/api.inc.php b/modules-available/usblockoff/api.inc.php
index 298dd948..6a5e4a7d 100644
--- a/modules-available/usblockoff/api.inc.php
+++ b/modules-available/usblockoff/api.inc.php
@@ -17,14 +17,14 @@ function HandleParameters()
$hwProps = array(
'vendorid' => $vid,
'productid' => $pid,
- 'name' => $name
+ 'name' => $name,
+ 'with-interface' => Request::get('with-interface', '', 'string')
);
// TODO: WITH INTERFACE in the HW table?! Should be equal for every device but not guaranteed (ODROID).
$deviceProps = array(
'hash' => Request::get('hash', '', 'string'),
'parent-hash' => Request::get('parent-hash', '', 'string'),
'via-port' => Request::get('via-port', '', 'string'),
- 'with-interface' => Request::get('with-interface', '', 'string'),
'interface-policy' => Request::get('interface-policy', '', 'string'),
'machineuuid' => $client['muid'],
'user' => $client['user'],