summaryrefslogtreecommitdiff
path: root/modules/contact.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2005-05-05 22:22:46 +0000
committerDries Buytaert <dries@buytaert.net>2005-05-05 22:22:46 +0000
commit2debcfb1efd074f310a64afa7e145d84031ed7f2 (patch)
treec0e3c19d72371e6236d26e80c49347b23d10e5f5 /modules/contact.module
parent381853c6b9fc493a32645eb83f21993d5cf4796b (diff)
downloadbrdo-2debcfb1efd074f310a64afa7e145d84031ed7f2.tar.gz
brdo-2debcfb1efd074f310a64afa7e145d84031ed7f2.tar.bz2
- Patch #15595 by Stefan and Djun: improved status messages.
TODO: we should write down a couple guidelines for these document them in the PHPDoc code of drupal_set_message()! .
Diffstat (limited to 'modules/contact.module')
-rw-r--r--modules/contact.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/contact.module b/modules/contact.module
index c5703bd58..1588aa556 100644
--- a/modules/contact.module
+++ b/modules/contact.module
@@ -135,7 +135,7 @@ function contact_mail_user() {
watchdog('mail', t('%name-from sent %name-to an e-mail.', array('%name-from' => theme('placeholder', $user->name), '%name-to' => theme('placeholder', $account->name))));
// Set a status message:
- drupal_set_message(t('Your message has been sent.'));
+ drupal_set_message(t('The message has been sent.'));
// Jump to the user's profile page:
drupal_goto("user/$account->uid");