Bug #2348
Buggy implementation at _list.html.erb
0%
Description
I found that you have rewritten _list.html.erb
At original file was:
<%= raw query.inline_columns.map {|column| "<td class=\"#{column.css_classes}\">#{column_content(column, issue)}</td>"}.join %>
You have changed it to:
<% inline_columns.each do |column| >
<%= content_tag 'td’, column_content(column, issue), :class ⇒ column.respond_to?(:css_classes) ? column.css_classes : column.name unless column.nil?%>
< end %>
now, when other plugin add new field as HTML, your code change it to HTML entries and HTML code is visible directly (it is not rendered as supposed)
Because of that I had problems with it at redmine_tags plugin. Issue is here: https://github.com/ixti/redmine_tags/issues/93
It would be nice if you can correct this issue.
History
#1 Updated by Andriy Lesyuk almost 10 years ago
- Category deleted (
Special column) - Status changed from New to Open