Skip to content

Commit

Permalink
merge query parameters to URL
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanbarlog authored Oct 19, 2017
1 parent 2d402e7 commit 1d6c9f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Handler/ChangeUrl.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function handle(Handler $ajax): Handler
$ajax->changeUrl(
$this->router->generate(
$this->request->attributes->get('_route'),
$this->request->attributes->get('_route_params')
array_merge($this->request->attributes->get('_route_params'), $this->request->query->all())
)
);

Expand Down

0 comments on commit 1d6c9f5

Please sign in to comment.