diff options
author | Marius Balteanu <marius.balteanu@zitec.com> | 2021-10-03 19:20:04 +0000 |
---|---|---|
committer | Marius Balteanu <marius.balteanu@zitec.com> | 2021-10-03 19:20:04 +0000 |
commit | 715ffcda434b8ad224127d008f3376adfbcc2c85 (patch) | |
tree | 98a7e477b5c1b02b476effaa01498b6c4121a9d4 /app/views | |
parent | 09618a274bb1f7a1353ff1a8ad4d90fa3efef74c (diff) | |
download | redmine-715ffcda434b8ad224127d008f3376adfbcc2c85.tar.gz redmine-715ffcda434b8ad224127d008f3376adfbcc2c85.zip |
Append two spaces to lines when importing an email on CommonMark with hardbreaks disabled (#32424).
Patch by Jens Krämer.
git-svn-id: http://svn.redmine.org/redmine/trunk@21228 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/settings/_general.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/settings/_general.html.erb b/app/views/settings/_general.html.erb index b8d82486a..043067f18 100644 --- a/app/views/settings/_general.html.erb +++ b/app/views/settings/_general.html.erb @@ -22,7 +22,7 @@ <p><%= setting_select :text_formatting, Redmine::WikiFormatting.formats_for_select, :blank => :label_none %> <span id="common_mark_info" class="<%= "hidden" unless Setting.text_formatting == "common_mark" %>"> <label class="block"> - <%= check_box_tag(nil, '', Redmine::Configuration['common_mark_enable_hardbreaks'] === true, disabled: true) %> + <%= check_box_tag(nil, '', Redmine::Configuration['common_mark_enable_hardbreaks'] == true, disabled: true) %> Hardbreaks </label> <em class="info"> |