Quote:
Originally Posted by Dylanblitz
On the plugin
Garage Postbit Vehicle Dropdown
Find the instances of
and replace with
Code:
unhtmlspecialchars($post[field43])
|
It didn't work for me. here is what i have....
Code:
global $vbulletin;
require_once(DIR . '/includes/garage_func_var.php');
if ($vbulletin->options['garage_pb_onoff'] && ((THIS_SCRIPT == 'showpost') || (THIS_SCRIPT == 'showthread')) && unhtmlspecialchars($post[field43]))
{
if ($vbulletin->options['legacypostbit'] == 1)
{
$template_hook['postbit_userinfo_right'] .= unhtmlspecialchars($post[field43]);
} else {
$template_hook['postbit_userinfo_left'] .= unhtmlspecialchars($post[field43]);
}
}