From 6373c917438c03891cee9d38c7aa8b7f17b38b43 Mon Sep 17 00:00:00 2001 From: Martin Edenhofer Date: Thu, 9 Jun 2016 15:00:11 +0200 Subject: [PATCH] Fixed margin property for blockquote inline replacement (use same as in css). --- app/models/channel/email_build.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/channel/email_build.rb b/app/models/channel/email_build.rb index 22c8082ca..8762d2591 100644 --- a/app/models/channel/email_build.rb +++ b/app/models/channel/email_build.rb @@ -241,7 +241,7 @@ Add/change markup to display html in any mail client nice. def self.html_mail_client_fixes(html) # https://github.com/martini/zammad/issues/165 - new_html = html.gsub('
', '
') + new_html = html.gsub('
', '
') new_html.gsub!('

', '

') new_html end