938 Posts in 271 Topics by 291 members
Forum Module
SilverStripe Forums » Forum Module » Forum Pagination Issue
Discuss the Forum Module.
Moderators: martimiz, Howard, Sean, Ryan M., biapar, Willr, Ingo, swaiba, simon_w
|
Page:
1
|
Go to End | |
| Author | Topic: | 333 Views |
-
Forum Pagination Issue

16 September 2011 at 9:36am
In Forum.php, I edited the Topics function to display 70 topics at once.
function Topics() {
if(isset($_GET['start']) && is_numeric($_GET['start'])) $limit = Convert::raw2sql($_GET['start']) . ", 70";
else $limit = 70;The problem is, the pagination links at the bottom go in increments of 10!
When you click on the link for Page 2, it puts &start=10 in the URL instead of &start=70 and it shows way too many pagination links!
| 333 Views | ||
|
Page:
1
|
Go to Top |

