mirror of
https://github.com/itflow-org/itflow
synced 2026-08-15 20:15:12 +00:00
Replace Function nullable_htmlentities() with just escapeHtml() and update all instances throughout
This commit is contained in:
@@ -61,7 +61,7 @@ enforceUserPermission('module_financial');
|
||||
<?php
|
||||
while ($row = mysqli_fetch_assoc($sql_clients)) {
|
||||
$client_id = intval($row['client_id']);
|
||||
$client_name = nullable_htmlentities($row['client_name']);
|
||||
$client_name = escapeHtml($row['client_name']);
|
||||
$balance = floatval($row['balance']);
|
||||
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user