Quote:
Originally Posted by kh99
I think the problem is that $this->post['usergroupid'] is not set if it's a pm (and so you can't use is_member_of(), if that's what you're doing). I don't think there's anything you can do except do a query for it yourself if you're displaying a PM. Maybe something like:
Code:
if (get_class() == 'vB_Postbit_Pm')
{
$userinfo = fetch_userinfo($this->post['userid']);
}
else
{
$userinfo &= $this->post;
}
// then use $userinfo to check group...
|
Well that's not really the problem. I use an array to store the usergroup ids, and yes I do use the post['usergroupid']. But if it's not set it wouldn't be in the array, which would just default output it the div without a background.
So I'm still having a feeling it's something with the hooks.