How to redirect a form in drupal 6.
Inside your module call hook_form_alter.
function yourModuleName_form_alter(&$form, $form_state, $form_id) {
if ($form_id == 'user_register') {
$form['#redirect'][] = 'node/341';
}
}
Of course you need to find the appropriate $form_id.
Advertisement
