Replace the rest of the getFallBack Functions with simple ?: '-'

This commit is contained in:
johnnyq
2026-07-14 19:17:26 -04:00
parent bcb244c245
commit c3a438ee59
4 changed files with 5 additions and 5 deletions

View File

@@ -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']);