remove htmlspecial chars on defuntproductover radio label

This commit is contained in:
Tiavina 2025-01-08 12:35:18 +03:00
parent 3a92645792
commit 05c29a0a1e

View File

@ -95,9 +95,9 @@
<div class="d-flex align-items-center mb-2">
<input type="radio"
name="coverProductsRadioButton"
value="<?= htmlspecialchars($currentCoverProduct->id); ?>"
value="<?= $currentCoverProduct->id; ?>"
<?= $currentCoverProduct->id == $_['defunt'][0]->product_cover_id ? 'checked' : ''; ?>>
<label class="form-check-label"><?= htmlspecialchars($currentCoverProduct->description); ?></label>
<label class="form-check-label"><?= $currentCoverProduct->description; ?></label>
</div>
</div>
<?php endforeach; ?>