
10-04-2007, 12:19 PM
|
 |
|
|
Join Date: Nov 2001
Location: West Columbia, SC
Posts: 537
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by timnp
Hi
We were having this problem too. Its a little bug in the code. Here is the fix.
In vbookie.php, find the line that says the following, in my copy it was line 361.
Your looking for:
PHP Code:
$pagenav = construct_page_nav($pagenumber, $perpage, $n_page_items, 'vbookie.php?' . $vbulletin->session->vars['sessionurl'] . "do=main&type=type");
and change it to:
PHP Code:
$pagenav = construct_page_nav($pagenumber, $perpage, $n_page_items, 'vbookie.php?' . $vbulletin->session->vars['sessionurl'] . "do=main&type=" . $type);
A very tiny change. You're changing the end of the line so that it doesn't read
and so that it does read
PHP Code:
&type=" . $type);
Hope that helps 
|
Thanks, but my page 2 is still blank.
http://www.luckpredictions.com/vbook...pe=type&page=2
|