Merge pull request #852 from annando/master

Bugfix: Problem with page switching with the old pager solved
This commit is contained in:
Tobias Diekershoff 2013-12-10 07:30:26 -08:00
commit b5785c3f16
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);
}