Merge pull request #247 from aftechro/patch-1

Update client_contacts.php
This commit is contained in:
Johnny 2022-01-06 19:35:21 -05:00 committed by GitHub
commit b8ea7ca2f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -125,9 +125,9 @@ $num_rows = mysqli_fetch_row(mysqli_query($mysqli,"SELECT FOUND_ROWS()"));
$contact_notes = $row['contact_notes']; $contact_notes = $row['contact_notes'];
$contact_created_at = $row['contact_created_at']; $contact_created_at = $row['contact_created_at'];
if($contact_id == $primary_contact){ if($contact_id == $primary_contact){
$primary_contact_display = "<p class='text-success'>Primary Contact</p>"; $primary_contact_display = "<small class='text-success'>Primary Contact</small>";
}else{ }else{
$primary_contact_display = ""; $primary_contact_display = "<small class='text-danger'>Needs approval</small>";
} }
?> ?>