Pagination Bug:
Category pages more than 1 have wrong links i.e extra spaces in catid:
Open toplist.php
Find: line 598
Code:
$pagenav = construct_page_nav($cur_page, $per_page, $total_sites, 'toplist.php?cid = '.$vbulletin->GPC['cid'] . $vbulletin->session->vars['sessionurl'], "");
Change to:
Code:
$pagenav = construct_page_nav($cur_page, $per_page, $total_sites, 'toplist.php?cid='.$vbulletin->GPC['cid'] . $vbulletin->session->vars['sessionurl'], "");