Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 1 addition & 0 deletions guest/guest_footer.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
<script src='../plugins/select2/js/select2.min.js'></script>
<script src='../plugins/inputmask/inputmask.min.js'></script>
<script src="../js/app.js"></script>
<script src="../js/pretty_content.js"></script>
<script src="../js/confirm_modal.js"></script>

</body>
Expand Down
2 changes: 1 addition & 1 deletion guest/guest_view_item.php
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
$doc_content = $purifier->purify($doc_row['document_content']);

echo "<h3>$doc_title</h3>";
echo $doc_content;
echo "<div class='prettyContent'>$doc_content</div>";

// Update document view count
$new_item_views = $item_views + 1;
Expand Down
2 changes: 1 addition & 1 deletion includes/app_version.php
Original file line number Diff line number Diff line change
Expand Up @@ -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");
2 changes: 1 addition & 1 deletion modals/ticket_assign_modal.php
Original file line number Diff line number Diff line change
Expand Up @@ -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"
);
Expand Down