From f5401dfade7da9d52a9703975c761310d525028c Mon Sep 17 00:00:00 2001 From: nathangray Date: Tue, 28 Nov 2017 09:04:46 -0700 Subject: [PATCH] Mail - Fix ": " gets the space stripped, leaving just ":" --- mail/inc/class.mail_compose.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mail/inc/class.mail_compose.inc.php b/mail/inc/class.mail_compose.inc.php index 158b2fe77a..f11671417d 100644 --- a/mail/inc/class.mail_compose.inc.php +++ b/mail/inc/class.mail_compose.inc.php @@ -775,7 +775,7 @@ class mail_compose } } /*run the purify on compose body unconditional*/ - $content['body'] = str_replace(array("\r", "\t", "
\n", ": "), array("", "", "
", ":"), + $content['body'] = str_replace(array("\r", "\t", "
\n"), array("", "", "
"), $_currentMode == 'html' ? Api\Html::purify($content['body'], Mail::$htmLawed_config, array(), true) : $content['body']); // do not double insert a signature on a server roundtrip