summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2005-04-24 09:32:01 +0000
committerDries Buytaert <dries@buytaert.net>2005-04-24 09:32:01 +0000
commit90c5dfb3d7bb61198e43333ea83238413f9c0181 (patch)
tree871ad916895829c7c36bac579ad62e14b0e80cb6
parentcb420f712185cc8694cadd38fa266a727f7c3cee (diff)
downloadbrdo-90c5dfb3d7bb61198e43333ea83238413f9c0181.tar.gz
brdo-90c5dfb3d7bb61198e43333ea83238413f9c0181.tar.bz2
- Small fixes
-rw-r--r--modules/contact.module3
-rw-r--r--modules/contact/contact.module3
2 files changed, 2 insertions, 4 deletions
diff --git a/modules/contact.module b/modules/contact.module
index 8991295a0..f13ea54a1 100644
--- a/modules/contact.module
+++ b/modules/contact.module
@@ -242,8 +242,7 @@ function contact_mail_page() {
$from = $edit['mail'];
// Compose the body:
- $message[] = t("%name sent a message using the contact form at $form.", array('$name' => $edit['name'], '%form' => url($_GET['q'], NULL, NULL, TRUE)));
- $message[] = t('Message:');
+ $message[] = t("%name sent a message using the contact form at %form:", array('%name' => $edit['name'], '%form' => url($_GET['q'], NULL, NULL, TRUE)));
$message[] = $edit['message'];
// Tidy up the body:
diff --git a/modules/contact/contact.module b/modules/contact/contact.module
index 8991295a0..f13ea54a1 100644
--- a/modules/contact/contact.module
+++ b/modules/contact/contact.module
@@ -242,8 +242,7 @@ function contact_mail_page() {
$from = $edit['mail'];
// Compose the body:
- $message[] = t("%name sent a message using the contact form at $form.", array('$name' => $edit['name'], '%form' => url($_GET['q'], NULL, NULL, TRUE)));
- $message[] = t('Message:');
+ $message[] = t("%name sent a message using the contact form at %form:", array('%name' => $edit['name'], '%form' => url($_GET['q'], NULL, NULL, TRUE)));
$message[] = $edit['message'];
// Tidy up the body: