From 531922676eb8c08cf84fdc7f20394ab6466fbe57 Mon Sep 17 00:00:00 2001 From: alecpl Date: Mon, 20 Dec 2010 14:17:32 +0000 Subject: - small performance improvement --- program/steps/mail/func.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc index 750cf6f61..280dd430c 100644 --- a/program/steps/mail/func.inc +++ b/program/steps/mail/func.inc @@ -735,7 +735,7 @@ function rcmail_plain_body($body, $flowed=false) // find/mark quoted lines... for ($n=0, $cnt=count($a_lines); $n < $cnt; $n++) { if ($a_lines[$n][0] == '>' && preg_match('/^(>+\s*)+/', $a_lines[$n], $regs)) { - $q = strlen(preg_replace('/\s/', '', $regs[0])); + $q = strlen(rtrim($regs[0])); $a_lines[$n] = substr($a_lines[$n], strlen($regs[0])); if ($q > $quote_level) -- cgit v1.2.3