##// END OF EJS Templates
HTML escape at app/helpers/reports_helper.rb....
Toshi MARUYAMA -
r6234:17d788b7a292
parent child
Show More
@@ -31,6 +31,6 module ReportsHelper
31 31
32 32 def aggregate_link(data, criteria, *args)
33 33 a = aggregate data, criteria
34 a > 0 ? link_to(a, *args) : '-'
34 a > 0 ? link_to(h(a), *args) : '-'
35 35 end
36 36 end
General Comments 0
You need to be logged in to leave comments. Login now