diff options
author | alecpl <alec@alec.pl> | 2012-03-09 07:43:54 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2012-03-09 07:43:54 +0000 |
commit | 719066788579c13215da23f5d52c89fa91670644 (patch) | |
tree | 15d9fbcc925dc16607a58a65e80b089280057194 /program/lib/Mail/mimePart.php | |
parent | ab5036eef72185f0419108c5b6b73a5181a48da2 (diff) |
- Merge fix r5990 from trunk
Diffstat (limited to 'program/lib/Mail/mimePart.php')
-rw-r--r-- | program/lib/Mail/mimePart.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/program/lib/Mail/mimePart.php b/program/lib/Mail/mimePart.php index 036ce74a2..a1cf111de 100644 --- a/program/lib/Mail/mimePart.php +++ b/program/lib/Mail/mimePart.php @@ -639,8 +639,8 @@ class Mail_mimePart // RFC 2045: // value needs encoding if contains non-ASCII chars or is longer than 78 chars if (!preg_match('#[^\x20-\x7E]#', $value)) { - $token_regexp = '#([^\x21,\x23-\x27,\x2A,\x2B,\x2D' - . ',\x2E,\x30-\x39,\x41-\x5A,\x5E-\x7E])#'; + $token_regexp = '#([^\x21\x23-\x27\x2A\x2B\x2D' + . '\x2E\x30-\x39\x41-\x5A\x5E-\x7E])#'; if (!preg_match($token_regexp, $value)) { // token if (strlen($name) + strlen($value) + 3 <= $maxLength) { @@ -662,7 +662,7 @@ class Mail_mimePart // RFC2231: $encValue = preg_replace_callback( - '/([^\x21,\x23,\x24,\x26,\x2B,\x2D,\x2E,\x30-\x39,\x41-\x5A,\x5E-\x7E])/', + '/([^\x21\x23\x24\x26\x2B\x2D\x2E\x30-\x39\x41-\x5A\x5E-\x7E])/', array($this, '_encodeReplaceCallback'), $value ); $value = "$charset'$language'$encValue"; |