From eb98e82505ee189f041681915646a9fa1820ba3a Mon Sep 17 00:00:00 2001 From: johnnyq Date: Fri, 25 Aug 2023 21:23:10 -0400 Subject: [PATCH] Remove tag icon top client header --- inc_all_client.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc_all_client.php b/inc_all_client.php index 438e892b..89b485fa 100644 --- a/inc_all_client.php +++ b/inc_all_client.php @@ -77,7 +77,7 @@ if (isset($_GET['client_id'])) { $client_tag_id_array[] = $client_tag_id; $client_tag_name_display_array[] = "$client_tag_name "; } - $client_tags_display = " " . implode('', $client_tag_name_display_array); + $client_tags_display = implode('', $client_tag_name_display_array); //Add up all the payments for the invoice and get the total amount paid to the invoice $sql_invoice_amounts = mysqli_query($mysqli, "SELECT SUM(invoice_amount) AS invoice_amounts FROM invoices WHERE invoice_client_id = $client_id AND invoice_status NOT LIKE 'Draft' AND invoice_status NOT LIKE 'Cancelled'");