From 92d6673bb5f5a49a9f76aa131e041939cbbb6039 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Sun, 3 Dec 2017 11:35:58 +0100 Subject: [PATCH] Add 'signature' identifier to signature element in sent HTML message (#6073) --- program/steps/mail/sendmail.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/program/steps/mail/sendmail.inc b/program/steps/mail/sendmail.inc index 438796bfb..69dcca43c 100644 --- a/program/steps/mail/sendmail.inc +++ b/program/steps/mail/sendmail.inc @@ -99,8 +99,8 @@ if (!$savedraft) { array( // remove empty signature div '/
( )?<\/div>[\s\r\n]*$/', - // remove signature's div ID - '/\s*id="_rc_sig"/', + // replace signature's div ID (#6073) + '/ id="_rc_sig"/', // add inline css for blockquotes and container '/
/', '/
/', @@ -109,7 +109,7 @@ if (!$savedraft) { ), array( '', - '', + ' id="signature"', '
', '
', '


',