From c220f3d127b0c245b61682f4f6a661a3a846e396 Mon Sep 17 00:00:00 2001 From: Stas Vilchik Date: Tue, 21 Apr 2015 10:37:56 +0200 Subject: [PATCH] fix after XSS fix --- .../src/main/webapp/WEB-INF/app/views/drilldown/issues.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/sonar-web/src/main/webapp/WEB-INF/app/views/drilldown/issues.html.erb b/server/sonar-web/src/main/webapp/WEB-INF/app/views/drilldown/issues.html.erb index be2d71956a7..cc97e1e1892 100644 --- a/server/sonar-web/src/main/webapp/WEB-INF/app/views/drilldown/issues.html.erb +++ b/server/sonar-web/src/main/webapp/WEB-INF/app/views/drilldown/issues.html.erb @@ -229,7 +229,7 @@ metric: null, rule: <% if @rule %>'<%= escape_javascript @rule.key -%>'<% else %>null<% end %>, severity: <% if @severity %>'<%= escape_javascript @severity -%>'<% else %>null<% end %>, - period: <% if @period %><%= escape_javascript @period -%><% else %>null<% end %> + period: <% if @period %><%= @period -%><% else %>null<% end %> }; -- 2.39.5