Quote:
Originally Posted by gpinjason
I'm having the same issues when I edit a user profile, it jacks up the code in the field43 box... I have to rebuild the post bit after each profile edit... is there a fix for this?? I've already done all the code and template edits in previous posts pertaining to this matter.. I was getting the %1$s dropdown menu error as well, but it corrects itself after I rebuild the postbit...
|
Is all the code there or does it look like it's been cut off? If it looks like all the code is there (starting <div> has a closing </div>) then it might be the ACP is converting the special characters.
Have you tried editing the plugin
Garage Postbit Vehicle Dropdown
And change the end to look like
PHP Code:
if ($vbulletin->options['garage_pb_onoff'] && ((THIS_SCRIPT == 'showpost') || (THIS_SCRIPT == 'showthread')) && $post[field43])
{
if ($vbulletin->options['legacypostbit'] == 1)
{
$template_hook['postbit_userinfo_right'] .= unhtmlspecialchars($post[field43]);
} else {
$template_hook['postbit_userinfo_left'] .= unhtmlspecialchars($post[field43]);
}
}