From 7b0a45687784f18047f6fd8a7eac46d476c482ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20Schw=C3=B6rer?= Date: Sat, 3 Feb 2018 17:46:31 +0100 Subject: [PATCH] fixed controllerOptions not working --- www/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/index.php b/www/index.php index 163cb85..6fb9d5c 100644 --- a/www/index.php +++ b/www/index.php @@ -107,7 +107,7 @@ try { if ($partcount !== count($rule['url'])) continue; $urlparams = []; - $ctrlOpt = key_exists('_opt', $rule['options']) ? explode($rule['options']['_opt'], '|') : []; + $ctrlOpt = key_exists('_opt', $rule['options']) ? explode('|', $rule['options']['_opt']) : []; $target = $rule['target']; $match = true;