PDA

View Full Version : Paging for first X pages does not work in Member list [SOLVED]


anno1986
01-26-2014, 10:01 AM
Removed the separator '/' at the end of the page no. for the first before the "..."


--- class_pagination.php.ORG 2014-01-26 16:57:17.000000000 +0100
+++ class_pagination.php 2014-01-26 16:55:40.000000000 +0100
@@ -74,7 +75,7 @@
if ($counter == $page)
$pagination .= "<span class='current'>{$counter}</span>";
else
- $pagination .= "<a href='{$this->website}{$this->symbol}page-{$counter}/'>{$counter}</a>";
+ $pagination .= "<a href='{$this->website}{$this->symbol}page-{$counter}'>{$counter}</a>";
}
$pagination .= "...";
$pagination .= "<a href=$this->website{$this->symbol}page-$lpm1>{$lpm1}</a>";

Hall of Famer
01-27-2014, 01:44 AM
Oh this, thanks for noticing me. I never had more than enough members on my demo site to test pagination for memberslist, thought it should work since pagination works for myadopts and messages pages. Will fix in next version.