Topic: Small update in pagination
Currently, if you go to a page that is higher than the current amount of pages (eg. 99), you get sent to page 1.
But I believe this could be easily fixed by changing
$p = (!isset($_GET['p']) || $_GET['p'] <= 1 || $_GET['p'] > $num_pages) ? 1 : $_GET['p'];
to
$p = (!isset($_GET['p']) || $_GET['p'] <= 1 || $_GET['p'] > $num_pages) ? $num_pages : $_GET['p'];
And now for why this is a handy feature:
Say you have a large thread and you bookmark it. Every day at least a page gets added, and you usually just need the information from the last 2 or 3 posts. Just bookmark that page with page number 9999 or so, and you'll always be at the last page
No huge thing, just a little handyness
-- Bekko