Always Sort primary contact at the top and Important Contacts under the primary contact following normal contacts

This commit is contained in:
johnnyq 2023-07-03 16:50:52 -04:00
parent b12e3677bd
commit 70a080a24e
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ $sql = mysqli_query($mysqli, "SELECT SQL_CALC_FOUND_ROWS * FROM contacts
WHERE contact_archived_at IS NULL
AND (contact_name LIKE '%$q%' OR contact_title LIKE '%$q%' OR location_name LIKE '%$q%' OR contact_email LIKE '%$q%' OR contact_department LIKE '%$q%' OR contact_phone LIKE '%$phone_query%' OR contact_extension LIKE '%$q%' OR contact_mobile LIKE '%$phone_query%')
AND contact_client_id = $client_id
ORDER BY contact_important DESC,$sb $o LIMIT $record_from, $record_to"
ORDER BY contact_primary DESC, contact_important DESC, $sb $o LIMIT $record_from, $record_to"
);
$num_rows = mysqli_fetch_row(mysqli_query($mysqli, "SELECT FOUND_ROWS()"));