mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 02:31:40 +09:00
Fix incorrect global route detection
This commit is contained in:
parent
9372ee4cce
commit
358832922e
1 changed files with 1 additions and 1 deletions
|
|
@ -1338,7 +1338,7 @@ class moduleController extends module
|
|||
'type' => $module_action_info->action->{$action_name}->type,
|
||||
'regexp' => array(),
|
||||
'config' => $action_info->route,
|
||||
'global_route' => $action_info->global_route ? 'Y' : 'N',
|
||||
'global_route' => $action_info->global_route === 'true' ? 'Y' : 'N',
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue