Skip to content

Commit

Permalink
HTML entity decode the value on configurationRead template.
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-unwin committed Mar 27, 2024
1 parent 22f2fd8 commit 0d23c73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Views/configurationRead.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<?= read_field('editable', $resource->editable, $dictionary->columns->editable, false) ?>
<?= read_field('type', $resource->type, $dictionary->columns->type, false) ?>
<?php if ($resource->type !== 'bool') { ?>
<?= read_field('value', $resource->value, $dictionary->columns->value, $update, '', '', '', $resource->type) ?>
<?= read_field('value', html_entity_decode($resource->value), $dictionary->columns->value, $update, '', '', '', $resource->type) ?>
<?php } ?>
<?php if ($resource->type === 'bool') { ?>
<?= read_select('value', $resource->value, $dictionary->columns->value, $update, '', array()) ?>
Expand Down

0 comments on commit 0d23c73

Please sign in to comment.