mirror of
https://github.com/itflow-org/itflow
synced 2026-07-24 17:30:43 +00:00
Update the rest of the PHP functions to use camelCase
This commit is contained in:
@@ -55,7 +55,7 @@ $assets_sql = mysqli_query($mysqli, "SELECT * FROM assets LEFT JOIN contacts ON
|
||||
$asset_warranty_expire = escapeHtml($row['asset_warranty_expire'] ?? "-");
|
||||
$assigned_to = escapeHtml($row['contact_name'] ?? "-");
|
||||
$asset_status = escapeHtml($row['asset_status']);
|
||||
$asset_uri_client = sanitize_url($row['asset_uri_client']);
|
||||
$asset_uri_client = escapeUrl($row['asset_uri_client']);
|
||||
|
||||
?>
|
||||
|
||||
|
||||
@@ -268,7 +268,7 @@ if ($session_contact_primary == 1 || $session_contact_is_technical_contact) {
|
||||
while ($row = mysqli_fetch_assoc($sql_assigned_assets)) {
|
||||
$asset_name = escapeHtml($row['asset_name']);
|
||||
$asset_type = escapeHtml($row['asset_type']);
|
||||
$asset_uri_client = sanitize_url($row['asset_uri_client']);
|
||||
$asset_uri_client = escapeUrl($row['asset_uri_client']);
|
||||
|
||||
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user