- Patch by Jeremy: fixed comment module glitch.
parent
27b50ef542
commit
1a98fce9c4
|
@ -102,7 +102,7 @@ function contact_mail_user() {
|
|||
if (!$edit['subject']) {
|
||||
form_set_error('subject', t('You must enter a subject.'));
|
||||
}
|
||||
form_validate($edit, $edit['mail'] . $user->name . $user->mail);
|
||||
form_validate($edit, $user->name . $user->mail);
|
||||
|
||||
if (!form_get_errors()) {
|
||||
// Compose the body:
|
||||
|
@ -155,7 +155,7 @@ function contact_mail_user() {
|
|||
$output .= form_textfield(t('Subject'), 'subject', $edit['subject'], 60, 50, NULL, NULL, TRUE);
|
||||
$output .= form_textarea(t('Message'), 'message', $edit['message'], 60, 15, NULL, NULL, TRUE);
|
||||
$output .= form_checkbox(t('Send me a copy.'), 'copy', $edit['copy']);
|
||||
$output .= form_token($edit['mail'] . $user->name . $user->mail);
|
||||
$output .= form_token($user->name . $user->mail);
|
||||
$output .= form_submit(t('Send e-mail'));
|
||||
$output = form($output);
|
||||
}
|
||||
|
|
|
@ -102,7 +102,7 @@ function contact_mail_user() {
|
|||
if (!$edit['subject']) {
|
||||
form_set_error('subject', t('You must enter a subject.'));
|
||||
}
|
||||
form_validate($edit, $edit['mail'] . $user->name . $user->mail);
|
||||
form_validate($edit, $user->name . $user->mail);
|
||||
|
||||
if (!form_get_errors()) {
|
||||
// Compose the body:
|
||||
|
@ -155,7 +155,7 @@ function contact_mail_user() {
|
|||
$output .= form_textfield(t('Subject'), 'subject', $edit['subject'], 60, 50, NULL, NULL, TRUE);
|
||||
$output .= form_textarea(t('Message'), 'message', $edit['message'], 60, 15, NULL, NULL, TRUE);
|
||||
$output .= form_checkbox(t('Send me a copy.'), 'copy', $edit['copy']);
|
||||
$output .= form_token($edit['mail'] . $user->name . $user->mail);
|
||||
$output .= form_token($user->name . $user->mail);
|
||||
$output .= form_submit(t('Send e-mail'));
|
||||
$output = form($output);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue