From 9026362d7a6b33c11c30ee502f9b7805dfbef017 Mon Sep 17 00:00:00 2001 From: Martin Edenhofer Date: Mon, 14 Aug 2017 10:51:22 +0200 Subject: [PATCH] Fixed reply with full quote and text article.body. --- .../app/controllers/ticket_zoom/article_actions.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/javascripts/app/controllers/ticket_zoom/article_actions.coffee b/app/assets/javascripts/app/controllers/ticket_zoom/article_actions.coffee index df150405a..cfa5a0ce4 100644 --- a/app/assets/javascripts/app/controllers/ticket_zoom/article_actions.coffee +++ b/app/assets/javascripts/app/controllers/ticket_zoom/article_actions.coffee @@ -407,7 +407,7 @@ class App.TicketZoomArticleActions extends App.Controller if article.content_type.match('html') selected = App.Utils.textCleanup(article.body) if article.content_type.match('plain') - selected = App.Utils.textCleanup(selected) + selected = App.Utils.textCleanup(article.body) selected = App.Utils.text2html(selected) if selected