From 3ed687f1c6febda9cf8465353ec585b1a3b38637 Mon Sep 17 00:00:00 2001 From: David Date: Wed, 8 Sep 2021 12:39:41 +0200 Subject: [PATCH] fix on deprecated parse_str without variable (#221) --- Resources/templates/default/partials/utils/paginator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/templates/default/partials/utils/paginator.php b/Resources/templates/default/partials/utils/paginator.php index 005de3b5b3..b1493ff6a9 100644 --- a/Resources/templates/default/partials/utils/paginator.php +++ b/Resources/templates/default/partials/utils/paginator.php @@ -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'];