Cool deal, now do you understand how to apply it to newthread?
Oh hell, use hook
newthread_post_complete with the same code and try.
EDIT:
Opps, you gotta deal with polls. You need something like..
PHP Code:
if(!$newpost['postpoll'])
{
$vbulletin->url = 'index.php?' . $vbulletin->session->vars['sessionurl'];
eval(print_standard_redirect('redirect_postthanks', true, true));
}
When posting a poll, they may go back to the thread. I didn't look that far ahead.
If you moderate you may need if(!$newpost['postpoll'] && $newpost['visible'])
Same over on newpost.