Bugfix: Amend SQL query for ticket assignment modal so client contacts aren't shown

This commit is contained in:
wrongecho
2025-01-31 18:42:27 +00:00
parent 73d0cb7497
commit 4c966f19e5
3 changed files with 6 additions and 2 deletions

View File

@@ -23,7 +23,7 @@
<?php
$sql_users_select = mysqli_query($mysqli, "SELECT users.user_id, user_name FROM users
LEFT JOIN user_settings on users.user_id = user_settings.user_id
AND user_type = 1
WHERE user_type = 1
AND user_archived_at IS NULL
ORDER BY user_name DESC"
);