There is a bug in this release that I havent seen a fix for
When the garage goes onto more than 1 page - the page links dont work they come up with an error about $_REQUEST[do]
There is a syntax error in vbgarage.php I had to fix
Open vbgarage.php and look for this bit of code
PHP Code:
$pagenav = construct_page_nav(
$pagenumber, $perpage, $garagecount[garages],
'vbgarage.php?' . $vbulletin->session->vars['sessionurl'] . 'do=$_REQUEST[do]', ''
. (!empty($vbulletin->GPC['perpage']) ? "&perpage=$perpage" : "")
);
Change it to this
PHP Code:
$pagenav = construct_page_nav(
$pagenumber, $perpage, $garagecount[garages],
'vbgarage.php?' . $vbulletin->session->vars['sessionurl'] . 'do='.$_REQUEST['do'], ''
. (!empty($vbulletin->GPC['perpage']) ? "&perpage=$perpage" : "")
);
I am running the latest release of vbgarage and vbulletin by the way
Hope this helps others