Skip to content

Commit

Permalink
BlueScreen: used scrubber for HTTP response headers (#513)
Browse files Browse the repository at this point in the history
  • Loading branch information
dakujem authored and dg committed Oct 13, 2021
1 parent f756b41 commit 981a191
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Tracy/BlueScreen/assets/content.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ $code = $exception->getCode() ? ' #' . $exception->getCode() : '';
<div class="outer">
<table class="tracy-sortable">
<?php
foreach (headers_list() as $s) { $s = explode(':', $s, 2); echo '<tr><th>', Helpers::escapeHtml($s[0]), '</th><td>', Helpers::escapeHtml(trim($s[1])), "</td></tr>\n"; }
foreach (headers_list() as $s) { $s = explode(':', $s, 2); echo '<tr><th>', Helpers::escapeHtml($s[0]), '</th><td>', $dump(trim($s[1]), $s[0]), "</td></tr>\n"; }
?>
</table>
</div>
Expand Down

0 comments on commit 981a191

Please sign in to comment.