Skip to content

Commit

Permalink
bug #2242 Fix edit and remove list actions #2241 (Rindhal)
Browse files Browse the repository at this point in the history
This PR was merged into the 1.x branch.

Discussion
----------

Fix edit and remove list actions #2241

Suggested fix for issue #2241

Commits
-------

79eb98d Fix edit and remove list actions #2241
  • Loading branch information
javiereguiluz committed Oct 9, 2018
2 parents 73127f3 + 79eb98d commit 5f36f67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Configuration/ActionConfigPass.php
Expand Up @@ -204,7 +204,7 @@ private function resolveActionInheritance(array $backendConfig)
if ('-' === $entityAction['name'][0]) {
$actionName = substr($entityAction['name'], 1);

unset($entityActions[$actionName], $entityActions['-'.$actionName], $defaultActions[$actionName]);
unset($entityActions[$actionName], $entityActions['-'.$actionName], $defaultActions[$actionName], $backendActions[$actionName]);
}
}

Expand Down

0 comments on commit 5f36f67

Please sign in to comment.