From 94577379d4b84e6ba251a72fd766a0f1ce6b997d Mon Sep 17 00:00:00 2001 From: johnnyq Date: Sun, 29 Aug 2021 14:01:04 -0400 Subject: [PATCH] Fixed Edit Client Contact Title it was missing --- client.php | 1 + clients.php | 1 + edit_client_modal.php | 10 ++++++++++ invoice_note_modal.php | 2 +- post.php | 1 + quote_note_modal.php | 2 +- recurring_note_modal.php | 2 +- 7 files changed, 16 insertions(+), 3 deletions(-) diff --git a/client.php b/client.php index e281c5c8..34939b23 100644 --- a/client.php +++ b/client.php @@ -50,6 +50,7 @@ if(isset($_GET['client_id'])){ $primary_contact = $row['primary_contact']; $primary_location = $row['primary_location']; $contact_name = $row['contact_name']; + $contact_title = $row['contact_title']; $contact_email = $row['contact_email']; $contact_phone = $row['contact_phone']; if(strlen($contact_phone)>2){ diff --git a/clients.php b/clients.php index 297d8f93..79ce404c 100644 --- a/clients.php +++ b/clients.php @@ -180,6 +180,7 @@ $num_rows = mysqli_fetch_row(mysqli_query($mysqli,"SELECT FOUND_ROWS()")); } $contact_id = $row['contact_id']; $contact_name = $row['contact_name']; + $contact_title = $row['contact_title']; $contact_phone = $row['contact_phone']; if(strlen($client_phone)>2){ $contact_phone = substr($row['contact_phone'],0,3)."-".substr($row['contact_phone'],3,3)."-".substr($row['contact_phone'],6,4); diff --git a/edit_client_modal.php b/edit_client_modal.php index e9b5acd3..07b03101 100644 --- a/edit_client_modal.php +++ b/edit_client_modal.php @@ -201,6 +201,16 @@ +
+ +
+
+ +
+ +
+
+
diff --git a/invoice_note_modal.php b/invoice_note_modal.php index d327d3ff..7dc0eaf1 100644 --- a/invoice_note_modal.php +++ b/invoice_note_modal.php @@ -11,7 +11,7 @@