Changeset 2050 for branches/branch-1_7/include/functions_mail.inc.php
- Timestamp:
- Jul 2, 2007, 8:36:53 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/branch-1_7/include/functions_mail.inc.php
r2049 r2050 75 75 if ($conf['enabled_format_email']) 76 76 { 77 $cvt7b_name = str_translate_to_ascii7bits($name);77 $cvt7b_name = '"'.addslashes(str_translate_to_ascii7bits($name)).'"'; 78 78 79 79 if (strpos($email, '<') === false) 80 80 { 81 return '"'.addslashes($cvt7b_name).'"<'.$email.'>';81 return $cvt7b_name.' <'.$email.'>'; 82 82 } 83 83 else
Note: See TracChangeset
for help on using the changeset viewer.