我已經創建在Drupal 6重置密碼錶單提出我要重定向到同一頁面展示一個Drupal消息。drupal_set_message Drupal的
我寫了下面的:
global $language;
$account = $form_state['values']['account'];
_user_mail_notify('password_reset', $account, $language);
watchdog('user', 'Password reset instructions mailed to %name at %email.', array('%name' => $account->name, '%email' => $account->mail));
drupal_set_message(t('Further instructions have been sent to your e-mail address.'));
$form_state['redirect'] = 'user/password';
return;
}
,但我的郵件代碼工作正常,但沒有顯示我的消息。
我認爲[這是答案] [1]你正在尋找。 [1]:http://stackoverflow.com/questions/1513289/drupal-drupal-set-message-doesnt-display-a-message?rq=1 – nit3ch 2013-04-04 20:26:20