Quote:
Originally Posted by Trumpetrhapsody
Just noticed some of your Who's Online locations aren't parsing properly:
|
Hmm, wonder how I missed that one.
To fix it
ACP->Plugins & Products->Plugin Manager
Edit
Garage Unknown plugin
Find
Code:
case 'cnd_garage_vehicle_add':
$handled = true;
$userinfo['action'] = construct_phrase($vbphrase[garage_global_add_vehicle], $vbulletin->options['garage_veh_names_default']);
$userinfo['where'] = '<a href="' . $vbulletin->options[garage_url_path] . 'garage.php">' . $vbphrase[garage_global_garage] . '</a>';
break;
After Add
Code:
case 'cnd_garage_vehicle_mod':
$handled = true;
$userinfo['action'] = construct_phrase($vbphrase[garage_global_mod_vehicle], $vbulletin->options['garage_veh_names_default']);
$userinfo['where'] = '<a href="' . $vbulletin->options[garage_url_path] . 'garage.php">' . $vbphrase[garage_global_garage] . '</a>';
break;