diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2017-07-22 07:08:29 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2017-07-22 07:08:29 +0000 |
commit | 41bb302594b48152b87c92f196c915f499093bbf (patch) | |
tree | 687cd5a9a65ef3b7999ce14c7b5eca90520ce0ac | |
parent | 916b4c14590bd30b0d2e4f365823f465217c9d72 (diff) | |
download | redmine-41bb302594b48152b87c92f196c915f499093bbf.tar.gz redmine-41bb302594b48152b87c92f196c915f499093bbf.zip |
Display commit messages like in 3.3 on revision list (#26403).
git-svn-id: http://svn.redmine.org/redmine/trunk@16843 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/views/repositories/_revisions.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/repositories/_revisions.html.erb b/app/views/repositories/_revisions.html.erb index 1d13a1446..72f97c06b 100644 --- a/app/views/repositories/_revisions.html.erb +++ b/app/views/repositories/_revisions.html.erb @@ -42,7 +42,7 @@ end %> <td class="checkbox"><%= radio_button_tag('rev_to', changeset.identifier, (line_num==2), :id => "cbto-#{line_num}", :onclick => "if ($('#cb-#{line_num}').prop('checked')) {$('#cb-#{line_num-1}').prop('checked',true);}") if show_diff && (line_num > 1) %></td> <td class="committed_on"><%= format_time(changeset.committed_on) %></td> <td class="author"><%= changeset.user.blank? ? changeset.author.to_s.truncate(30) : link_to_user(changeset.user) %></td> -<td class="comments"><%= format_changeset_comments changeset, :short => true %></td> +<td class="comments"><%= textilizable(truncate_at_line_break(changeset.comments), :formatting => Setting.commit_logs_formatting?) %></td> </tr> <% line_num += 1 %> <% end %> |