Quote:
Originally Posted by pgowder
Having a strange problem.
http://www.luckpredictions.com/vbookie.php
I have enough events for 3 pages, and the script shows that there should be 3 pages.
But when you click on page 2 or 3, the vbookie loads, but doesn't show any events.
Anyone seen this? Is there a fix?
|
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