From b30e105f85d47fe1db36afa4dc0d45b9ae0edbdc Mon Sep 17 00:00:00 2001 From: Marcus Hill Date: Sat, 19 Feb 2022 21:33:31 +0000 Subject: [PATCH] Revert network_created_at change --- client_contact_edit_modal.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client_contact_edit_modal.php b/client_contact_edit_modal.php index 2e76cf7f..1876a6c4 100644 --- a/client_contact_edit_modal.php +++ b/client_contact_edit_modal.php @@ -103,7 +103,7 @@ NOW() OR location_archived_at IS NULL) AND location_client_id = $client_id ORDER BY location_name ASC"); + $sql_locations = mysqli_query($mysqli,"SELECT * FROM locations WHERE (location_archived_at > '$network_created_at' OR location_archived_at IS NULL) AND location_client_id = $client_id ORDER BY location_name ASC"); while($row = mysqli_fetch_array($sql_locations)){ $location_id_select = $row['location_id']; $location_name_select = $row['location_name'];