mirror of
https://github.com/itflow-org/itflow
synced 2026-07-23 17:00:40 +00:00
Replace the rest of the getFallBack Functions with simple ?: '-'
This commit is contained in:
@@ -201,7 +201,7 @@ $num_rows = mysqli_fetch_row(mysqli_query($mysqli, "SELECT FOUND_ROWS()"));
|
||||
$software_description = escapeHtml($row['software_description']);
|
||||
$software_version = escapeHtml($row['software_version']);
|
||||
$software_type = escapeHtml($row['software_type']);
|
||||
$software_license_type = getFallBack(escapeHtml($row['software_license_type']));
|
||||
$software_license_type = escapeHtml($row['software_license_type']) ?: '-';
|
||||
$software_seats = escapeHtml($row['software_seats']);
|
||||
$software_expire = escapeHtml($row['software_expire']);
|
||||
$vendor_name = escapeHtml($row['vendor_name']);
|
||||
|
||||
Reference in New Issue
Block a user