Fix Issue with user not showing up in add ticket and recurring ticket, Also fixed the sort from DESC to ASC in some areas with user select

This commit is contained in:
johnnyq
2025-10-29 17:49:39 -04:00
parent 09b91c8826
commit 3c5c86c4c5
5 changed files with 6 additions and 7 deletions

View File

@@ -22,7 +22,7 @@
WHERE user_type = 1
AND user_status = 1
AND user_archived_at IS NULL
ORDER BY user_name DESC"
ORDER BY user_name ASC"
);
while ($row = mysqli_fetch_array($sql_users_select)) {
$user_id_select = intval($row['user_id']);