Skip to content

Commit

Permalink
Merge pull request #4390 from grebaldi/bugfix/nodes-controller-redire…
Browse files Browse the repository at this point in the history
…ct-show

BUGFIX: Use $nodeAggregateId->value redirect params in NodesController
  • Loading branch information
skurfuerst authored Jul 7, 2023
2 parents e16727c + e40585c commit 818d27c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Neos.Neos/Classes/Controller/Service/NodesController.php
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ public function createAction(
));

$this->redirect('show', null, null, [
'identifier' => $nodeAggregateId,
'identifier' => $nodeAggregateId->value,
'workspaceName' => $workspaceName,
'dimensions' => $dimensions
]);
Expand Down

0 comments on commit 818d27c

Please sign in to comment.