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" : "")
);
There is a bug in the vbgarage.php file which I couldn't find a solution for so fixed myself
I am running the latest release of vbgarage and vbulletin by the way
Hope this helps others