diff options
author | alecpl <alec@alec.pl> | 2011-11-03 17:51:54 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2011-11-03 17:51:54 +0000 |
commit | 9aab5e54568f6bc4071afd3ad0c5570abd98fa5c (patch) | |
tree | 6554bd2f3989039f1ad71427d426d8f3ab48f0d9 /program/steps | |
parent | 6ac6be5f4fcb520381af77abc02a50ea27281a3e (diff) |
- Fix redundant line break in flowed format (#1488146)
Diffstat (limited to 'program/steps')
-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 69724c554..39c25f19c 100644 --- a/program/steps/mail/func.inc +++ b/program/steps/mail/func.inc @@ -766,7 +766,7 @@ function rcmail_plain_body($body, $flowed=false) // previous line is flowed? if (isset($body[$last]) && $body[$n] - && $last != $last_sig + && $last !== $last_sig && $body[$last][strlen($body[$last])-1] == ' ' ) { $body[$last] .= $body[$n]; |