Changeset 1734 in subversion
- Timestamp:
- Sep 5, 2008 3:05:29 AM (5 years ago)
- File:
-
- 1 edited
-
trunk/roundcubemail/program/lib/Mail/mimePart.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/program/lib/Mail/mimePart.php
r1733 r1734 398 398 // value needs encoding if contains non-ASCII chars or is longer than 78 chars 399 399 400 if ( preg_match('#[\x20-\x7E]#', $value)) { // ASCII400 if (!preg_match('#[^\x20-\x7E]#', $value)) { // ASCII 401 401 $quoted = addcslashes($value, '\\"'); 402 402 if (strlen($name) + strlen($quoted) + 6 <= $maxLength)
Note: See TracChangeset
for help on using the changeset viewer.
