Skip to content
Snippets Groups Projects
Commit 6a0d93f8 authored by Tim van Dijen's avatar Tim van Dijen Committed by Thijs Kinkhorst
Browse files

Ignore error if there's no scope

parent 49187661
No related branches found
No related tags found
No related merge requests found
......@@ -66,7 +66,7 @@ class FilterScopes extends ProcessingFilter
$values = $request['Attributes'][$attribute];
$newValues = [];
foreach ($values as $value) {
list(, $scope) = explode('@', $value, 2);
@list(, $scope) = explode('@', $value, 2);
if ($scope === null) {
$newValues[] = $value;
continue; // there's no scope
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment