Merge branch 'develop' of github.com:bcit-ci/CodeIgniter4 into develop

This commit is contained in:
Lonnie Ezell 2018-07-08 22:48:34 -05:00
commit 106a37dd5c

View File

@ -237,7 +237,7 @@
<?php foreach ($cookies as $name => $value) : ?>
<tr>
<td><?= $name ?></td>
<td><?= $value ?></td>
<td><?= is_array($value) ? var_dump($value) : $value ?></td>
</tr>
<?php endforeach ?>
</tbody>