hook_form 被调用两次
/**
* Implements hook_form_alter().
*/
function MYMODULE_form_alter(&$form, &$form_state, $form_id) {
if ($form_id == 'user_register_form') {
$form_state['redirect'] = false;
my_function();
}
}
my_function() 调用两次,我只需要一次。
我读了这篇文章:
https://drupal.stackexchange.com/questions/22881/hook-form-being-called-twice
我尝试使用 $form_state['redirect'] = false 但对我不起作用。
有人知道任何干净的方法吗?谢谢