Skip to content

Commit

Permalink
more woops
Browse files Browse the repository at this point in the history
  • Loading branch information
zegenie committed Mar 18, 2013
1 parent 306832f commit 242c2bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion caspar/templates/debugger-row.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
<?php if (is_array($dbgjson)): ?>
<?php foreach ($dbgjson as $field => $value): ?>
<div class="csp-dbg-json-field"><?php echo $field; ?></div>
<pre class="csp-dbg-json-value"><?php echo $value; ?></pre>
<pre class="csp-dbg-json-value"><?php echo (is_array($value)) ? 'array' : $value; ?></pre>
<?php endforeach; ?>
<?php endif; ?>
<?php endif; ?>
Expand Down

0 comments on commit 242c2bf

Please sign in to comment.