Skip to content

Commit

Permalink
Fixes bug with delete from an embedded list (#199)
Browse files Browse the repository at this point in the history
  • Loading branch information
SelrahcD committed Jun 29, 2021
1 parent ebd9cf6 commit 6513ad5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Controller/AdminExtensionControllerTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ function ($name) use ($hiddenFields) {
$masterRequestUri = \sprintf('%s?%s', \strtok($baseMasterRequestUri, '?'), \http_build_query($queryParameters));

$requestParameters = $this->request->query->all();
$requestParameters['referer'] = $masterRequestUri;
$requestParameters['referer'] = urlencode($masterRequestUri);

$viewVars = [
'paginator' => $paginator,
Expand Down

0 comments on commit 6513ad5

Please sign in to comment.