]> git.mxchange.org Git - friendica.git/commitdiff
Bugfix of the bugfix :)
authorMichael Vogel <icarus@dabo.de>
Tue, 10 Dec 2013 20:16:13 +0000 (21:16 +0100)
committerMichael Vogel <icarus@dabo.de>
Tue, 10 Dec 2013 20:16:13 +0000 (21:16 +0100)
include/text.php

index 7908ca9f225ce7a105d4b5bf0a393f1aef3da3e0..a47e352bae7fecdcee91fbcb58622ead3a2b15bf 100644 (file)
@@ -281,10 +281,9 @@ function paginate_data(&$a, $count=null) {
 
        if (($a->page_offset != "") AND !strstr($stripped, "&offset="))
                $stripped .= "&offset=".urlencode($a->page_offset);
-
-       if (strpos($stripped, "?") === 0) {
-               $pos = strpos($stripped, "&");
-               $stripped = substr($stripped, 0, $pos)."?".substr($stripped, $pos + 1);
+       if (!strpos($stripped, "?")) {
+               if ($pos = strpos($stripped, "&"))
+                       $stripped = substr($stripped, 0, $pos)."?".substr($stripped, $pos + 1);
        }
 
        $url = $a->get_baseurl() . '/' . $stripped;