From c2d91096f710c6661a574c87376891ff238d034f Mon Sep 17 00:00:00 2001 From: Marcus Hill Date: Sat, 26 Feb 2022 11:27:17 +0000 Subject: [PATCH] Only show primary contact note for primary contacts --- client_contacts.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client_contacts.php b/client_contacts.php index 4683459c..7cf65359 100644 --- a/client_contacts.php +++ b/client_contacts.php @@ -139,7 +139,7 @@ $num_rows = mysqli_fetch_row(mysqli_query($mysqli,"SELECT FOUND_ROWS()")); if($contact_id == $primary_contact){ $primary_contact_display = "Primary Contact"; }else{ - $primary_contact_display = "Needs approval"; + $primary_contact_display = FALSE; } $contact_location_id = $row['contact_location_id']; $location_name = $row['location_name'];