From a7e88dca7d63257c2daf8fde96272bdd41e47f4f Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Sun, 16 Jul 2017 18:02:38 +0000 Subject: [PATCH] Fixed that formatting of commit message is never applied (#26445). git-svn-id: http://svn.redmine.org/redmine/trunk@16823 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/helpers/application_helper.rb | 2 +- test/unit/helpers/application_helper_test.rb | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 3409bb7be..b8cb965c7 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -651,7 +651,7 @@ module ApplicationHelper if options[:formatting] == false text = h(text) else - formatting = options[:formatting] || Setting.text_formatting + formatting = Setting.text_formatting text = Redmine::WikiFormatting.to_html(formatting, text, :object => obj, :attribute => attr) end diff --git a/test/unit/helpers/application_helper_test.rb b/test/unit/helpers/application_helper_test.rb index 020b4636c..3bb018be1 100644 --- a/test/unit/helpers/application_helper_test.rb +++ b/test/unit/helpers/application_helper_test.rb @@ -1297,6 +1297,14 @@ RAW end end + def test_textilizable_with_formatting_set_to_false_should_not_format_text + assert_equal '*text*', textilizable("*text*", :formatting => false) + end + + def test_textilizable_with_formatting_set_to_true_should_format_text + assert_equal '

text

', textilizable("*text*", :formatting => true) + end + def test_parse_redmine_links_should_handle_a_tag_without_attributes text = 'http://example.com' expected = text.dup -- 2.39.5