- Unnecessary check_plain in contact.module
parent
230db1039a
commit
c4d24a48c5
|
@ -88,7 +88,7 @@ function contact_mail_user() {
|
||||||
|
|
||||||
// Tidy up the body:
|
// Tidy up the body:
|
||||||
foreach ($message as $key => $value) {
|
foreach ($message as $key => $value) {
|
||||||
$message[$key] = wordwrap(check_plain($value));
|
$message[$key] = wordwrap($value);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Prepare all fields:
|
// Prepare all fields:
|
||||||
|
|
|
@ -88,7 +88,7 @@ function contact_mail_user() {
|
||||||
|
|
||||||
// Tidy up the body:
|
// Tidy up the body:
|
||||||
foreach ($message as $key => $value) {
|
foreach ($message as $key => $value) {
|
||||||
$message[$key] = wordwrap(check_plain($value));
|
$message[$key] = wordwrap($value);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Prepare all fields:
|
// Prepare all fields:
|
||||||
|
|
Loading…
Reference in New Issue