Log in

View Full Version : newpost_process hook


Twilkey
10-02-2012, 04:23 AM
I need to know how to get the threadid in this hook. I am adding a tag to the database during this hook, and the only data I can't seem to get is the threadid. I have looked at the function_newpost.php file and from what I see in there $threadinfo['threadid'] should work. I have even tried $threadinfo[threadid] but that did not work either.

$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "tag
(tagid,tagtext,dateline)
VALUES ('','".$fieldvalue."','".TIMENOW."')");

$last_id = mysql_insert_id();

$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "tagthread
(tagid,threadid,userid,dateline)
VALUES ('".$last_id."','".$threadinfo['threadid']."','".$vbulletin->userinfo['userid']."','".TIMENOW."')");

kh99
10-02-2012, 10:21 AM
I think the problem is that when you're creating a new thread, the threadid hasn't been created yet. It won't be known until the thread is actually saved. It looks like at hook newpost_complete you would be able to use the threadid.

Also, do you want your code to run for both threads and posts? If you only want it to run when a new thread is created, you'll want to check for $type == 'thread'.