From df4f8a518c7d312d644df2b47bd4cf8ba7105a3b Mon Sep 17 00:00:00 2001 From: johnnyq Date: Tue, 19 Mar 2024 15:11:06 -0400 Subject: [PATCH] Add DHCP next to IP if none is given --- client_assets.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client_assets.php b/client_assets.php index fbda3049..eaa9c801 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 = "-"; + $asset_ip_display = "DHCP"; } else { $asset_ip_display = $asset_ip; }