Skip to content

Commit

Permalink
Fix outputting segment details on Query Monitor
Browse files Browse the repository at this point in the history
Missing an echo
  • Loading branch information
joehoyle committed Feb 10, 2020
1 parent dab5459 commit 2da59ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inc/query_monitor/class-output-html.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public function output() {
<ol class="qm-toggler">
<?php echo $this->build_toggler() ?>
<div class="qm-toggled">
<pre><?php esc_html( print_r( $trace, true ) ) ?></pre>
<pre><?php echo esc_html( print_r( $trace, true ) ) ?></pre>
</div>
</ol>
</td>
Expand Down

0 comments on commit 2da59ef

Please sign in to comment.