Hi,
I was having the same problem, but with the [username] replacement plug-in. I've been searching and searching and can't find the original plug-in, but here is the code (I hope it's okay to post it). It's in the global complete hook:
PHP Code:
if ($vbulletin->userinfo['username']=='Unregistered')
{
$output = str_replace('[username]', 'Guest', $output);
}
else
{
$output = str_replace('[username]', $vbulletin->userinfo['username'], $output);
}
If you find a fix for this, I'd love to keep this plug-in. I've disabled it for now.