Fix missing variable assignment for client_is_lead

This commit is contained in:
Marcus Hill 2023-10-21 11:54:41 +01:00
parent ba9442e6c3
commit 2240f641dc
1 changed files with 3 additions and 2 deletions

View File

@ -144,6 +144,7 @@ $num_rows = mysqli_fetch_row(mysqli_query($mysqli, "SELECT FOUND_ROWS()"));
$client_created_at = date('Y-m-d', strtotime($row['client_created_at'])); $client_created_at = date('Y-m-d', strtotime($row['client_created_at']));
$client_updated_at = nullable_htmlentities($row['client_updated_at']); $client_updated_at = nullable_htmlentities($row['client_updated_at']);
$client_archive_at = nullable_htmlentities($row['client_archived_at']); $client_archive_at = nullable_htmlentities($row['client_archived_at']);
$client_is_lead = intval($row['client_lead']);
// Client Tags // Client Tags