From 514b5348cb15a0a72e051dd1d6a2795c22586fff Mon Sep 17 00:00:00 2001 From: johnnyq Date: Wed, 16 Aug 2023 13:48:57 -0400 Subject: [PATCH] For Client Tags If no icon is present use a tag icon --- clients.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/clients.php b/clients.php index 43edbb7f..b74c2ba6 100644 --- a/clients.php +++ b/clients.php @@ -162,6 +162,9 @@ $num_rows = mysqli_fetch_row(mysqli_query($mysqli, "SELECT FOUND_ROWS()")); if (empty($client_tag_color)) { $client_tag_color = "dark"; } + if (empty($client_tag_icon)) { + $client_tag_icon = "tag"; + } $client_tag_name_display_array[] = "$client_tag_name "; } $client_tags_display = implode('', $client_tag_name_display_array);