diff options
author | till <till@php.net> | 2008-03-25 00:52:33 +0000 |
---|---|---|
committer | till <till@php.net> | 2008-03-25 00:52:33 +0000 |
commit | 0b17277eaeebdee278230d7cd2550a1a9e2fcf9f (patch) | |
tree | d565a5621da11bc7a146b959ee2ebded63c9f678 /program/steps | |
parent | 4bca672a9d7198a09eed0878f26078d0c5a69128 (diff) |
* committing patch from #1484783
Diffstat (limited to 'program/steps')
-rw-r--r-- | program/steps/mail/func.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc index b1ce4bd4e..79e0248c3 100644 --- a/program/steps/mail/func.inc +++ b/program/steps/mail/func.inc @@ -695,10 +695,10 @@ function rcmail_print_body($part, $safe=FALSE, $plain=FALSE) $quotation = ''; $q = 0; - if (preg_match('/^(>+\s*)/', $line, $regs)) + if (preg_match('/^(>+\s*)+/', $line, $regs)) { - $q = strlen(preg_replace('/\s/', '', $regs[1])); - $line = substr($line, strlen($regs[1])); + $q = strlen(preg_replace('/\s/', '', $regs[0])); + $line = substr($line, strlen($regs[0])); if ($q > $quote_level) $quotation = str_repeat('<blockquote>', $q - $quote_level); |