Add DHCP next to IP if none is given

This commit is contained in:
johnnyq 2024-03-19 15:11:06 -04:00
parent e426778ac2
commit df4f8a518c
1 changed files with 1 additions and 1 deletions

View File

@ -224,7 +224,7 @@ $num_rows = mysqli_fetch_row(mysqli_query($mysqli, "SELECT FOUND_ROWS()"));
}
$asset_ip = nullable_htmlentities($row['asset_ip']);
if (empty($asset_ip)) {
$asset_ip_display = "-";
$asset_ip_display = "DHCP";
} else {
$asset_ip_display = $asset_ip;
}