- Affected version
- 2.1.2
isPageCriteriaValid
checks;
PHP:
case 'controller':
if (isset($criterion['data']['name']) && isset($criterion['data']['action']))
But in
_matchController
;
PHP:
if (!empty($data['action']) && isset($params['action']))
{
if (strtolower($params['action']) != strtolower($data['action']))
{
return false;
}
}
!empty
not need to check isset
)