I tried putting the below in newthread_post_complete, but it didn't update the corresponding post column "homepage" in the post table to 1 when the checkbox was checked:
PHP Code:
if ($foruminfo['forumid'] == 19 || $foruminfo['forumid'] == 21)
{
$dataman->set_info('homepage', $post['homepage']);
}
After I click on Submit, it makes the page blank (assuming there is an error). However, it does create the thread and post, but doesn't make the homepage = 1 in the post table. Can you let me know what I should be doing on new thread create to mark the post table column "homepage" = 1 when a new thread is created with that checkbox checked?
--------------- Added [DATE]1248704503[/DATE] at [TIME]1248704503[/TIME] ---------------
I actually did it by using newpost_complete and a custom DB query:
PHP Code:
if (($foruminfo['forumid'] == 19 || $foruminfo['forumid'] == 21) && $type == 'thread' && $post['homepage'] != "0")
$vbulletin->db->query_write("UPDATE " . TABLE_PREFIX . "post SET homepage = $post[homepage] WHERE postid = $post[postid]");