Skip to content

Commit

Permalink
Merge pull request sidekiq#2309 from nolman/master
Browse files Browse the repository at this point in the history
fix xss vulnerability in display class
  • Loading branch information
davydovanton committed Apr 21, 2015
2 parents 8bf6fd4 + 54766f3 commit 3056a5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/views/queue.erb
Expand Up @@ -19,7 +19,7 @@
</thead>
<% @messages.each_with_index do |msg, index| %>
<tr>
<td><%= msg.display_class %></td>
<td><%= h(msg.display_class) %></td>
<td>
<% a = msg.display_args.inspect %>
<% if a.size > 100 %>
Expand Down

0 comments on commit 3056a5a

Please sign in to comment.