Skip to content

Commit

Permalink
Fix toolbar error when post has array.
Browse files Browse the repository at this point in the history
  • Loading branch information
lonnieezell committed Apr 1, 2017
1 parent 4bdf64c commit 6cd62f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/Debug/Toolbar/Views/toolbar.tpl.php
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@
<?php foreach ($post as $name => $value) : ?>
<tr>
<td><?= esc($name) ?></td>
<td><?= esc($value) ?></td>
<td><?= is_array($value) ? esc(print_r($value, true)) : esc($value) ?></td>
</tr>
<?php endforeach; ?>
</tbody>
Expand Down

0 comments on commit 6cd62f0

Please sign in to comment.