From 6790464e909422a7536b13180f0c10827d98ea5c Mon Sep 17 00:00:00 2001 From: johnnyq Date: Wed, 20 Mar 2024 13:05:10 -0400 Subject: [PATCH] Do not show DHCP if IP is null under assets --- client_assets.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client_assets.php b/client_assets.php index cf0881f8..60dde070 100644 --- a/client_assets.php +++ b/client_assets.php @@ -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 = "DHCP"; + $asset_ip_display = "-"; } else { $asset_ip_display = $asset_ip; }