Skip to content

Commit

Permalink
fix on deprecated parse_str without variable (#221)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbeig committed Sep 8, 2021
1 parent b5e614b commit 3ed687f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Resources/templates/default/partials/utils/paginator.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
if(empty($baselink)) {
$baselink = $this->get_pathinfo();

if($gets = parse_str($this->get_querystring())) {
if(parse_str($this->get_querystring(), $gets)) {
$query_removal = $this->query_removal;
if (empty($query_removal) || !is_array($query_removal)) {
$query_removal = ['pronto'];
Expand Down

0 comments on commit 3ed687f

Please sign in to comment.