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:
@@ -89,7 +89,7 @@ $rows = 0;
|
||||
<?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']);
|
||||
|
||||
// Calculate total tickets raised in period
|
||||
$sql_ticket_raised_count = mysqli_query(
|
||||
|
||||
Reference in New Issue
Block a user