1
0

fixed controllerOptions not working

This commit is contained in:
Mike Schwörer 2018-02-03 17:46:31 +01:00
parent 0582a3f95d
commit 7b0a456877
Signed by: Mikescher
GPG Key ID: D3C7172E0A70F8CF

View File

@ -107,7 +107,7 @@ try {
if ($partcount !== count($rule['url'])) continue; if ($partcount !== count($rule['url'])) continue;
$urlparams = []; $urlparams = [];
$ctrlOpt = key_exists('_opt', $rule['options']) ? explode($rule['options']['_opt'], '|') : []; $ctrlOpt = key_exists('_opt', $rule['options']) ? explode('|', $rule['options']['_opt']) : [];
$target = $rule['target']; $target = $rule['target'];
$match = true; $match = true;