Merge pull request #1162 from itflow-org/tck-assign-modal

Bugfix: Amend SQL query for ticket assignment modal so contacts aren't shown
This commit is contained in:
Johnny 2025-01-31 13:48:08 -05:00 committed by GitHub
commit c40d15a545
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 6 additions and 2 deletions

View File

@ -2,6 +2,10 @@
This file documents all notable changes made to ITFlow.
## [25.01.3]
### Fixed
- Fixed ticket assignment modal showing client contacts.
## [25.01.2]
### Fixed
- Fixed app version.

View File

@ -5,4 +5,4 @@
* Update this file each time we merge develop into master. Format is YY.MM (add a .v if there is more than one release a month.
*/
DEFINE("APP_VERSION", "25.01.2");
DEFINE("APP_VERSION", "25.01.3");

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"
);