If the excludedPages setting is empty i would assume that no page is excluded.
But the line 63 in action.php interprets it as if every page is excluded in this case:
if ((bool) preg_match('/'.$this->getConf('excludedPages').'/', $ID)) {
Adding a check to this condition to check if excludedPages is not empty would clarify an empty excludedPages setting.
If the
excludedPages
setting is empty i would assume that no page is excluded.But the line 63 in action.php interprets it as if every page is excluded in this case:
if ((bool) preg_match('/'.$this->getConf('excludedPages').'/', $ID)) {
Adding a check to this condition to check if
excludedPages
is not empty would clarify an emptyexcludedPages
setting.cheers