s.molinari
Sat 16th Aug '03, 5:36pm
Hi,
A user on our board found this. On the print version (printthread.php) of a thread there is a link to show all posts from that thread on one page. When you click it, the page reloads but the page is still split up into different pages. I've changed the call to sanitize_perpage to the following and it seems to work:// get perpage
if ($bbuserinfo['maxposts'] > 0 and $perpage <= $bbuserinfo['maxposts']) {
sanitize_perpage($perpage, $bbuserinfo['maxposts'], $bbuserinfo['maxposts']);
} else {
sanitize_perpage($perpage, $perpage, $maxposts);
}
Hope I could help.:)
Scott
A user on our board found this. On the print version (printthread.php) of a thread there is a link to show all posts from that thread on one page. When you click it, the page reloads but the page is still split up into different pages. I've changed the call to sanitize_perpage to the following and it seems to work:// get perpage
if ($bbuserinfo['maxposts'] > 0 and $perpage <= $bbuserinfo['maxposts']) {
sanitize_perpage($perpage, $bbuserinfo['maxposts'], $bbuserinfo['maxposts']);
} else {
sanitize_perpage($perpage, $perpage, $maxposts);
}
Hope I could help.:)
Scott