Quote:
Originally Posted by M.C.
Sorry to lift it up... how to make it for several forums (for 4.2)?
PHP Code:
if (in_array($foruminfo['forumid'], array(1,2,3)))
or
PHP Code:
if (in_array($vbulletin->forum['forumid'], array(1,2,3)))
don't seems to work 
|
You need to use the variable I used in the original post regarding this (for hook location postbit_display_complete), $this->forum['forumid']
PHP Code:
if (in_array($this->forum['forumid'] , array(1,2,3)))