diff --git a/CHANGELOG.md b/CHANGELOG.md index 316d3a68..b90e79ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/guest/guest_footer.php b/guest/guest_footer.php index 3db213d9..1af14af2 100644 --- a/guest/guest_footer.php +++ b/guest/guest_footer.php @@ -22,6 +22,7 @@ + diff --git a/guest/guest_view_item.php b/guest/guest_view_item.php index fdeb0a4e..efe783df 100644 --- a/guest/guest_view_item.php +++ b/guest/guest_view_item.php @@ -132,7 +132,7 @@ if ($item_type == "Document") { $doc_content = $purifier->purify($doc_row['document_content']); echo "

$doc_title

"; - echo $doc_content; + echo "
$doc_content
"; // Update document view count $new_item_views = $item_views + 1; diff --git a/includes/app_version.php b/includes/app_version.php index 0a4a59dd..f2573122 100644 --- a/includes/app_version.php +++ b/includes/app_version.php @@ -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"); diff --git a/modals/ticket_assign_modal.php b/modals/ticket_assign_modal.php index 1443bcdf..9ab37025 100644 --- a/modals/ticket_assign_modal.php +++ b/modals/ticket_assign_modal.php @@ -23,7 +23,7 @@