- Unnecessary check_plain in contact.module

4.7.x
Steven Wittens 2005-04-11 11:06:01 +00:00
parent 230db1039a
commit c4d24a48c5
2 changed files with 2 additions and 2 deletions

View File

@ -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:

View File

@ -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: