Skip to content
Snippets Groups Projects
Commit 90c5dfb3 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Small fixes

parent cb420f71
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -242,8 +242,7 @@ function contact_mail_page() { ...@@ -242,8 +242,7 @@ function contact_mail_page() {
$from = $edit['mail']; $from = $edit['mail'];
// Compose the body: // 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("%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[] = $edit['message']; $message[] = $edit['message'];
// Tidy up the body: // Tidy up the body:
......
...@@ -242,8 +242,7 @@ function contact_mail_page() { ...@@ -242,8 +242,7 @@ function contact_mail_page() {
$from = $edit['mail']; $from = $edit['mail'];
// Compose the body: // 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("%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[] = $edit['message']; $message[] = $edit['message'];
// Tidy up the body: // Tidy up the body:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment