Commit 3ae8c53c authored by Jean-Philippe Lang's avatar Jean-Philippe Lang

Small fix in issue history display.

git-svn-id: http://redmine.rubyforge.org/svn/trunk@695 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent eb6ab2af
......@@ -63,10 +63,10 @@ module IssuesHelper
value = content_tag("i", h(value)) if value
end
if detail.value and !detail.value.to_s.empty?
if !detail.value.blank?
case detail.property
when 'attr', 'cf'
if old_value
if !detail.old_value.blank?
label + " " + l(:text_journal_changed, old_value, value)
else
label + " " + l(:text_journal_set_to, value)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment