If 'Your name' is Chinese character, whither or not be a user name or type in, such as 汤姆(Tom in Chinese).
show below message:
Unable to send e-mail. Please contact the site administrator if the problem persists.
But, type in Tom, sent nicely.
If 'Your name' is Chinese character, whither or not be a user name or type in, such as 汤姆(Tom in Chinese).
show below message:
Unable to send e-mail. Please contact the site administrator if the problem persists.
But, type in Tom, sent nicely.
Comments
Comment #1
yerboo commentedComment #2
yerboo commenteda way to bypass is drop the name value totally
forward.module (v1.16)
delete 639-641
if (!$form_state['values']['name']) {
form_set_error('name', t('You must enter your name.'));
}
delete 514-520
$form['message']['name'] = array(
'#type' => 'textfield',
'#title' => t('Your Name'),
'#size' => 58,
'#maxlength' => 256,
'#required' => TRUE,
);
Now, there isn't the name required. This is a way for no way.
Comment #3
john.oltman commentedComment #4
john.oltman commentedThis should not be an issue with Drupal 8
Comment #5
john.oltman commented