Quote:
Originally Posted by tommyxv
I'm running 4.2.3 BETA 3, maybe that's why.
|
Try this:
PHP Code:
global $vbulletin;
if ($this->registry->options['ozzmodz_firstpost_display_active']AND is_member_of($vbulletin->userinfo, explode(',', $this->registry->options['ozzmodz_firstpost_display_groups'])))
{
$included_forums = explode(',', $this->registry->options['ozzmodz_firstpost_display_forums']);
$included_thread = explode(',', $this->registry->options['ozzmodz_firstpost_display_threads']);
if (THIS_SCRIPT != 'private')
{
if($this->thread['firstpostid'] == $this->post['postid'] AND in_array($this->thread['threadid'], $included_thread))
{
switch ($vbulletin->options['ozzmodz_firstpost_display_template'])
{
case 1: $this->templatename = 'postbit'; break;
case 2: $this->templatename = 'ozzmodz_firstpost_display_postbit'; break;
}
}
if($this->thread['firstpostid'] == $this->post['postid'] AND in_array($this->thread['forumid'], $included_forums))
{
switch ($vbulletin->options['ozzmodz_firstpost_display_template'])
{
case 1: $this->templatename = 'postbit'; break;
case 2: $this->templatename = 'ozzmodz_firstpost_display_postbit'; break;
}
}
}
}