Quote:
Originally Posted by bosken
Ok, new vehicle uploaded. Got the above error and some users got this :
When I run Rebuild Post bit, all fine again. (have to do this every time though)

|
In the ACP
ACP->User Profile Fields->User Profile Field Manager
There is a field for the garage postbit data. What is the max length on it? If it's small, increase it to like 10000
Also
ACP->Plugins & Products->Plugin Manager
Find the plugin called "Garage Postbit Vehicle Dropdown"
Find and replace
Code:
if ($vbulletin->options['legacypostbit'] == 1)
{
$template_hook['postbit_userinfo_right'] .= $post[field43];
} else {
$template_hook['postbit_userinfo_left'] .= $post[field43];
}
with
Code:
if ($vbulletin->options['legacypostbit'] == 1)
{
$template_hook['postbit_userinfo_right'] .= unhtmlspecialchars($post[field43]);
} else {
$template_hook['postbit_userinfo_left'] .= unhtmlspecialchars($post[field43]);
}
Let me know if that helps.
I'm still working on the problem with the browse vehicles getting set to 1.