Bugfix of the bugfix :)

This commit is contained in:
Michael Vogel 2013-12-10 21:16:13 +01:00
parent d487cb2078
commit 5d3ebcc2cf
1 changed files with 3 additions and 4 deletions

View 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;