##// END OF EJS Templates
backout r6356: HTML escape of app/helpers/timelog_helper.rb...
Toshi MARUYAMA -
r7821:55d41cf77bb5
parent child
Show More
@@ -132,7 +132,7 module TimelogHelper
132 132 elsif k = @available_criterias[criteria][:klass]
133 133 obj = k.find_by_id(value.to_i)
134 134 if obj.is_a?(Issue)
135 obj.visible? ? h("#{obj.tracker} ##{obj.id}: #{obj.subject}") : h("##{obj.id}")
135 obj.visible? ? "#{obj.tracker} ##{obj.id}: #{obj.subject}" : "##{obj.id}"
136 136 else
137 137 obj
138 138 end
General Comments 0
You need to be logged in to leave comments. Login now