@@ -146,7 +146,7 @@ |
||
146 | 146 | $actionsRequested = is_array($actionsQuery) ? $actionsQuery : array_filter(explode('|', $actionsQuery)); |
147 | 147 | |
148 | 148 | // Filter out any invalid action names. |
149 | - $actions = array_filter($actionsRequested, function ($action) use ($group) { |
|
149 | + $actions = array_filter($actionsRequested, function($action) use ($group) { |
|
150 | 150 | return in_array($action, $this->getActionNames($group)); |
151 | 151 | }); |
152 | 152 |