Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
7d977336
Commit
7d977336
authored
Dec 09, 2005
by
Dries Buytaert
Browse files
- Fixed
#40395
: changed ':' to '.'.
parent
4758c8cd
Changes
2
Hide whitespace changes
Inline
Side-by-side
modules/contact.module
View file @
7d977336
...
...
@@ -303,7 +303,7 @@ function contact_mail_page_submit($form_id, $edit) {
$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
(
"%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:
...
...
modules/contact/contact.module
View file @
7d977336
...
...
@@ -303,7 +303,7 @@ function contact_mail_page_submit($form_id, $edit) {
$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
(
"%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:
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment