Bugfix: Problem with page switching with the old pager solved

This commit is contained in:
Michael Vogel 2013-12-10 15:45:26 +01:00
parent 7e5c8ab91c
commit eca9431909
1 changed files with 1 additions and 1 deletions

View File

@ -282,7 +282,7 @@ function paginate_data(&$a, $count=null) {
if (($a->page_offset != "") AND !strstr($stripped, "&offset="))
$stripped .= "&offset=".urlencode($a->page_offset);
if (!strstr($stripped, "?")) {
if (strpos($stripped, "?") === 0) {
$pos = strpos($stripped, "&");
$stripped = substr($stripped, 0, $pos)."?".substr($stripped, $pos + 1);
}