
02-25-2007, 03:46 PM
|
 |
|
|
Join Date: Jun 2006
Location: Utah
Posts: 4,758
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by Attitude5ire
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'], "");
|
Cool fix
|