Skip to content

Commit

Permalink
Merge pull request #79 from dpnsan/2-3-stable
Browse files Browse the repository at this point in the history
Fixed environment view bug which broke filtering
  • Loading branch information
smartinez87 committed Jul 11, 2012
2 parents cebb377 + 08d9855 commit eb9d723
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion views/exception_notifier/_environment.rhtml
@@ -1,6 +1,6 @@
<% max = @request.env.keys.max { |a,b| a.length <=> b.length } -%>
<% @request.env.keys.sort.each do |key| -%>
* <%= "%-*s: %s" % [max.length, key, filter_sensitive_post_data_from_env(key, @request.env[key].to_s.strip)] %>
* <%= "%-*s: %s" % [max.length, key, filter_sensitive_post_data_from_env(key, @request.env[key]).to_s.strip] %>
<% end -%>

* Process: <%= $$ %>
Expand Down

0 comments on commit eb9d723

Please sign in to comment.