fix links to contacts

This commit is contained in:
o-psi
2024-02-15 22:12:41 +00:00
parent 570b3479a9
commit 958e808c88
2 changed files with 4 additions and 3 deletions

View File

@@ -5,10 +5,10 @@ $sql = mysqli_query($mysqli, "SELECT * FROM contacts
WHERE contact_client_id = $client_id
AND contact_archived_at IS NULL
AND contact_email != ''
AND ( contact_primary = 1 OR
AND (contact_primary = 1 OR
contact_important = 1 OR
contact_billing = 1 OR
contact_technical = 1 )
contact_technical = 1)
ORDER BY contact_primary DESC,
contact_important DESC"
);