]> git.mxchange.org Git - friendica.git/commitdiff
Remove Pager->ensureQueryParameter
authorHypolite Petovan <hypolite@mrpetovan.com>
Sat, 12 Jan 2019 00:29:55 +0000 (19:29 -0500)
committerHypolite Petovan <hypolite@mrpetovan.com>
Sat, 12 Jan 2019 00:29:55 +0000 (19:29 -0500)
src/Content/Pager.php

index fafb68084c6b1bfd2d3e2983334250660d1d5ed2..064a7f90f4e0cd58e8e567aec2b3239a69ee4e24 100644 (file)
@@ -123,21 +123,6 @@ class Pager
                $this->baseQueryString = $stripped;
        }
 
-       /**
-        * Ensures the provided URI has its query string punctuation in order.
-        *
-        * @param string $uri
-        * @return string
-        */
-       private function ensureQueryParameter($uri)
-       {
-               if (strpos($uri, '?') === false && ($pos = strpos($uri, '&')) !== false) {
-                       $uri = substr($uri, 0, $pos) . '?' . substr($uri, $pos + 1);
-               }
-
-               return $uri;
-       }
-
        /**
         * @brief Minimal pager (newer/older)
         *