From: Hypolite Petovan Date: Sun, 23 Feb 2020 01:19:42 +0000 (-0500) Subject: Test for the existence of the precise parsed url part in BoundariesPager X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=18a5cc691629006ac7cee53f835d83dc40bb85b8;p=friendica.git Test for the existence of the precise parsed url part in BoundariesPager - Address https://github.com/friendica/friendica/issues/8000#issuecomment-587138376 --- diff --git a/src/Content/BoundariesPager.php b/src/Content/BoundariesPager.php index b8b7f67bba..8bbbde2b47 100644 --- a/src/Content/BoundariesPager.php +++ b/src/Content/BoundariesPager.php @@ -57,7 +57,7 @@ class BoundariesPager extends Pager $this->last_item_id = $last_item_id; $parsed = parse_url($this->getBaseQueryString()); - if ($parsed) { + if (!empty($parsed['query'])) { parse_str($parsed['query'], $queryParameters); $this->first_page = !($queryParameters['since_id'] ?? null) && !($queryParameters['max_id'] ?? null);