Skip to content

Commit edbf44d

Browse files
committed
Cast value to string
1 parent 2b8705e commit edbf44d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Views/exceptions/development.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@
393393
<?php foreach ($values as $field => $value) : ?>
394394
<tr>
395395
<th><?= htmlentities($field) ?></th>
396-
<td><?= htmlentities($value) ?></td>
396+
<td><?= htmlentities((string) $value) ?></td>
397397
</tr>
398398
<?php endforeach ?>
399399
</tbody>

0 commit comments

Comments
 (0)