mirror of
https://github.com/itflow-org/itflow
synced 2026-07-24 01:10:40 +00:00
Replace Function nullable_htmlentities() with just escapeHtml() and update all instances throughout
This commit is contained in:
@@ -15,7 +15,7 @@ if ($client_id) {
|
||||
$sql = mysqli_query($mysqli, "SELECT * FROM projects WHERE project_id = $project_id LIMIT 1");
|
||||
|
||||
$row = mysqli_fetch_assoc($sql);
|
||||
$project_name = nullable_htmlentities($row['project_name']);
|
||||
$project_name = escapeHtml($row['project_name']);
|
||||
|
||||
ob_start();
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user