diff --git a/client_contacts.php b/client_contacts.php
index 4ebe9c465..540c38ae8 100644
--- a/client_contacts.php
+++ b/client_contacts.php
@@ -10,7 +10,7 @@
//Rebuild URL
$url_query_strings_sort = http_build_query($get_copy);
-$sql = mysqli_query($mysqli, "SELECT SQL_CALC_FOUND_ROWS * FROM contacts
+$sql = mysqli_query($mysqli, "SELECT SQL_CALC_FOUND_ROWS * FROM contacts
LEFT JOIN locations ON location_id = contact_location_id
WHERE contact_$archive_query
AND (contact_name LIKE '%$q%' OR contact_title LIKE '%$q%' OR location_name LIKE '%$q%' OR contact_email LIKE '%$q%' OR contact_department LIKE '%$q%' OR contact_phone LIKE '%$phone_query%' OR contact_extension LIKE '%$q%' OR contact_mobile LIKE '%$phone_query%')
diff --git a/client_domain_add_modal.php b/client_domain_add_modal.php
index 41caf7e4c..f705e50cd 100644
--- a/client_domain_add_modal.php
+++ b/client_domain_add_modal.php
@@ -11,73 +11,104 @@
diff --git a/client_networks.php b/client_networks.php
index 85c439d5a..c8a0cc912 100644
--- a/client_networks.php
+++ b/client_networks.php
@@ -16,7 +16,7 @@
LEFT JOIN locations ON location_id = network_location_id
WHERE network_client_id = $client_id
AND network_archived_at IS NULL
- AND (network_name LIKE '%$q%' OR network_vlan LIKE '%$q%' OR network LIKE '%$q%' OR network_gateway LIKE '%$q%' OR network_dhcp_range LIKE '%$q%' OR location_name LIKE '%$q%')
+ AND (network_name LIKE '%$q%' OR network_description LIKE '%$q%' OR network_vlan LIKE '%$q%' OR network LIKE '%$q%' OR network_gateway LIKE '%$q%' OR network_dhcp_range LIKE '%$q%' OR location_name LIKE '%$q%')
ORDER BY $sort $order LIMIT $record_from, $record_to"
);
@@ -101,6 +101,7 @@
while ($row = mysqli_fetch_array($sql)) {
$network_id = intval($row['network_id']);
$network_name = nullable_htmlentities($row['network_name']);
+ $network_description = nullable_htmlentities($row['network_description']);
$network_vlan = intval($row['network_vlan']);
if (empty($network_vlan)) {
$network_vlan_display = "-";
@@ -131,11 +132,17 @@