OK: I'm not sure if this has been posted yet, but I was working on a client vB and they were running this hack...
I had never seen this hack before, but a mod jumped out at me as needing doing...
find:
PHP Code:
$navbits = construct_navbits(array('' => 'vBGarage'));
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('vbgarage_viewgarage') . '");');
replace with
PHP Code:
$navbits = construct_navbits(array('vbgarage.php' => 'vBGarage', '' => "$user[username]'s Garage"));
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('vbgarage_viewgarage') . '");');
This will create an easy link back to the Garage homepage in the navbar, and the viewed garage will have the user's name in the navbar and consequently the <title tags also...