I have a problem
I want to reply automatic when a event is postet
i have this code:
PHP Code:
if ($foruminfo['forumid'] == 34)
{
$postdm =& datamanager_init('Post', $vbulletin, ERRTYPE_ARRAY, 'threadpost');
$postdm->set_info('forum', $foruminfo);
$postdm->set_info('thread', $threadinfo);
$postdm->set('threadid', $threadinfo['threadid']);
$postdm->set('userid', 150);
$postdm->set('pagetext', '[SHOWTOGROUPS="10"]Folge dem wei?en Wolf!
[/SHOWTOGROUPS]');
$postdm->set('allowsmilie', 1);
$postdm->set('visible', 1);
$postdm->set('dateline', TIMENOW);
$postdm->save();
}
hook: newthread_post_complete
it works great in all forums but not in the event forum!
what must i change?