diff options
author | thomascube <thomas@roundcube.net> | 2010-05-20 21:47:19 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2010-05-20 21:47:19 +0000 |
commit | dffcaa59db930408b9f07a300ba67a7933d2eab0 (patch) | |
tree | 0f58771c6ccb420e7f90b967c450e8d8b3f4539a /program/steps/mail/func.inc | |
parent | c769c6699f50cf834aa004fb3d1f4fa5ff966c7c (diff) |
No need for the padding since quoted lines are not wrapped at all
Diffstat (limited to 'program/steps/mail/func.inc')
-rw-r--r-- | program/steps/mail/func.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc index fcb0229df..e44f3db81 100644 --- a/program/steps/mail/func.inc +++ b/program/steps/mail/func.inc @@ -1176,7 +1176,7 @@ function rcmail_address_string($input, $max=null, $linked=false, $addicon=null) function rcmail_wrap_and_quote($text, $length = 72) { // Rebuild the message body with a maximum of $max chars, while keeping quoted message. - $max = min(78, $length + 8); + $max = min(77, $length + 8); $lines = preg_split('/\r?\n/', trim($text)); $out = ''; |