mirror of
https://github.com/itflow-org/itflow
synced 2026-08-17 13:05:12 +00:00
Replace Function nullable_htmlentities() with just escapeHtml() and update all instances throughout
This commit is contained in:
@@ -49,8 +49,8 @@ ob_start();
|
||||
|
||||
while ($row = mysqli_fetch_assoc($expenses_sql)) {
|
||||
$expense_id = intval($row['expense_id']);
|
||||
$expense_description = nullable_htmlentities($row['expense_description']);
|
||||
$expense_date = nullable_htmlentities($row['expense_date']);
|
||||
$expense_description = escapeHtml($row['expense_description']);
|
||||
$expense_date = escapeHtml($row['expense_date']);
|
||||
?>
|
||||
<option value="<?= $expense_id ?>"><?= "($expense_date) $expense_description"; ?></option>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user