I'm looking for a part-time remote job.

Hire me


I'm the author of:

Mastering Redmine is a comprehensive guide with tips, tricks and best practices, and an easy-to-learn structure.

Check the book's project or

Buy the book

Social pages of the book:

By buying this book you also donate to Redmine (see this page).


Follow me:

Bug #2348

Buggy implementation at _list.html.erb

Added by Dariusz Kowalski over 9 years ago. Updated over 9 years ago.

Status:
Open
Priority:
Normal
Assignee:
Category:
-
Target version:
Start date:
10 Nov 2014
Due date:
% Done:

0%

Redmine version:
2.5.1
External issue:

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 over 9 years ago

  • Category deleted (Special column)
  • Status changed from New to Open

Also available in: Atom PDF

Terms of use | Privacy policy