9 Commits

Author SHA1 Message Date
Johnny
9ea41c6ae5 Merge pull request #1163 from itflow-org/develop
Release 25.01.3
2025-01-31 13:52:39 -05:00
Johnny
c40d15a545 Merge pull request #1162 from itflow-org/tck-assign-modal
Bugfix: Amend SQL query for ticket assignment modal so contacts aren't shown
2025-01-31 13:48:08 -05:00
wrongecho
4c966f19e5 Bugfix: Amend SQL query for ticket assignment modal so client contacts aren't shown 2025-01-31 18:42:27 +00:00
johnnyq
73d0cb7497 Removed reports_contacts.php as it was incomplete for the hotfix 3 2025-01-31 13:23:49 -05:00
johnnyq
ef06c4141f Started work on Global Contacts, Added PrettyContent to guest footer and updated the guest document view to use it so images are responsive and tables show up correctly 2025-01-30 18:24:05 -05:00
Johnny
0dca0ce4bf Merge pull request #1161 from itflow-org/develop
Release 25.01.2
2025-01-30 15:01:20 -05:00
johnnyq
b5be8605d6 Final Version Fix in Changelog 2025-01-30 14:58:18 -05:00
johnnyq
2268a41b00 Update App version to 25.01.2 2025-01-30 14:55:06 -05:00
johnnyq
8efd22f47b Fix App Versioning 2025-01-30 14:54:09 -05:00
5 changed files with 13 additions and 4 deletions

View File

@@ -2,7 +2,15 @@
This file documents all notable changes made to ITFlow. This file documents all notable changes made to ITFlow.
## [25.01.01] ## [25.01.3]
### Fixed
- Fixed ticket assignment modal showing client contacts.
## [25.01.2]
### Fixed
- Fixed app version.
## [25.01.1]
### Added / Changed ### Added / Changed
- Redesigned the Multi-Factor Authentication (MFA) Setup and Enforcement Flow UI/UX for a more intuitive user experience. - Redesigned the Multi-Factor Authentication (MFA) Setup and Enforcement Flow UI/UX for a more intuitive user experience.

View File

@@ -22,6 +22,7 @@
<script src='../plugins/select2/js/select2.min.js'></script> <script src='../plugins/select2/js/select2.min.js'></script>
<script src='../plugins/inputmask/inputmask.min.js'></script> <script src='../plugins/inputmask/inputmask.min.js'></script>
<script src="../js/app.js"></script> <script src="../js/app.js"></script>
<script src="../js/pretty_content.js"></script>
<script src="../js/confirm_modal.js"></script> <script src="../js/confirm_modal.js"></script>
</body> </body>

View File

@@ -132,7 +132,7 @@ if ($item_type == "Document") {
$doc_content = $purifier->purify($doc_row['document_content']); $doc_content = $purifier->purify($doc_row['document_content']);
echo "<h3>$doc_title</h3>"; echo "<h3>$doc_title</h3>";
echo $doc_content; echo "<div class='prettyContent'>$doc_content</div>";
// Update document view count // Update document view count
$new_item_views = $item_views + 1; $new_item_views = $item_views + 1;

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. * 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.1"); DEFINE("APP_VERSION", "25.01.3");

View File

@@ -23,7 +23,7 @@
<?php <?php
$sql_users_select = mysqli_query($mysqli, "SELECT users.user_id, user_name FROM users $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 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 AND user_archived_at IS NULL
ORDER BY user_name DESC" ORDER BY user_name DESC"
); );