Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
c4d24a48
Commit
c4d24a48
authored
Apr 11, 2005
by
Steven Wittens
Browse files
- Unnecessary check_plain in contact.module
parent
230db103
Changes
2
Hide whitespace changes
Inline
Side-by-side
modules/contact.module
View file @
c4d24a48
...
...
@@ -88,7 +88,7 @@ function contact_mail_user() {
// Tidy up the body:
foreach
(
$message
as
$key
=>
$value
)
{
$message
[
$key
]
=
wordwrap
(
check_plain
(
$value
)
)
;
$message
[
$key
]
=
wordwrap
(
$value
);
}
// Prepare all fields:
...
...
modules/contact/contact.module
View file @
c4d24a48
...
...
@@ -88,7 +88,7 @@ function contact_mail_user() {
// Tidy up the body:
foreach
(
$message
as
$key
=>
$value
)
{
$message
[
$key
]
=
wordwrap
(
check_plain
(
$value
)
)
;
$message
[
$key
]
=
wordwrap
(
$value
);
}
// Prepare all fields:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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