diff options
author | Dries Buytaert <dries@buytaert.net> | 2005-02-19 08:16:56 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2005-02-19 08:16:56 +0000 |
commit | 79f6941e9b0f84a5ac8dcc1980b7324dfbd88c89 (patch) | |
tree | dd4bf002503e9859804dc0526645472ecb188b01 | |
parent | 9e8d74b49005f9f4d032cfcf528271ed736b398a (diff) | |
download | brdo-79f6941e9b0f84a5ac8dcc1980b7324dfbd88c89.tar.gz brdo-79f6941e9b0f84a5ac8dcc1980b7324dfbd88c89.tar.bz2 |
- Fixed typo. Reported by KB.
-rw-r--r-- | modules/contact.module | 2 | ||||
-rw-r--r-- | modules/contact/contact.module | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/contact.module b/modules/contact.module index 3123a7fff..189676a86 100644 --- a/modules/contact.module +++ b/modules/contact.module @@ -122,7 +122,7 @@ function contact_mail_user() { $output = form_item(t('From'), $user->name .' <'. $user->mail .'>'); $output .= form_item(t('To'), $account->name); - $output .= form_textfield(t('Subject'), 'subject', $edit['subject'], 50, 8, NULL, NULL, TRUE); + $output .= form_textfield(t('Subject'), 'subject', $edit['subject'], 50, 50, NULL, NULL, TRUE); $output .= form_textarea(t('Message'), 'message', $edit['message'], 70, 8, NULL, NULL, TRUE); $output .= form_submit(t('Send e-mail')); $output = form($output); diff --git a/modules/contact/contact.module b/modules/contact/contact.module index 3123a7fff..189676a86 100644 --- a/modules/contact/contact.module +++ b/modules/contact/contact.module @@ -122,7 +122,7 @@ function contact_mail_user() { $output = form_item(t('From'), $user->name .' <'. $user->mail .'>'); $output .= form_item(t('To'), $account->name); - $output .= form_textfield(t('Subject'), 'subject', $edit['subject'], 50, 8, NULL, NULL, TRUE); + $output .= form_textfield(t('Subject'), 'subject', $edit['subject'], 50, 50, NULL, NULL, TRUE); $output .= form_textarea(t('Message'), 'message', $edit['message'], 70, 8, NULL, NULL, TRUE); $output .= form_submit(t('Send e-mail')); $output = form($output); |