Skip to content

Commit 9ea41c6

Browse files
authored
Merge pull request #1163 from itflow-org/develop
Release 25.01.3
2 parents 0dca0ce + c40d15a commit 9ea41c6

File tree

5 files changed

+8
-3
lines changed

5 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
This file documents all notable changes made to ITFlow.
44

5+
## [25.01.3]
6+
### Fixed
7+
- Fixed ticket assignment modal showing client contacts.
8+
59
## [25.01.2]
610
### Fixed
711
- Fixed app version.

guest/guest_footer.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
<script src='../plugins/select2/js/select2.min.js'></script>
2323
<script src='../plugins/inputmask/inputmask.min.js'></script>
2424
<script src="../js/app.js"></script>
25+
<script src="../js/pretty_content.js"></script>
2526
<script src="../js/confirm_modal.js"></script>
2627

2728
</body>

guest/guest_view_item.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@
132132
$doc_content = $purifier->purify($doc_row['document_content']);
133133

134134
echo "<h3>$doc_title</h3>";
135-
echo $doc_content;
135+
echo "<div class='prettyContent'>$doc_content</div>";
136136

137137
// Update document view count
138138
$new_item_views = $item_views + 1;

includes/app_version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
* 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.
66
*/
77

8-
DEFINE("APP_VERSION", "25.01.2");
8+
DEFINE("APP_VERSION", "25.01.3");

modals/ticket_assign_modal.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<?php
2424
$sql_users_select = mysqli_query($mysqli, "SELECT users.user_id, user_name FROM users
2525
LEFT JOIN user_settings on users.user_id = user_settings.user_id
26-
AND user_type = 1
26+
WHERE user_type = 1
2727
AND user_archived_at IS NULL
2828
ORDER BY user_name DESC"
2929
);

0 commit comments

Comments
 (0)