diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index 21cf847c..84329956 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1 +1 @@ -custom: ["https://donate.itflow.org"] +custom: ["https://services.itflow.org"] diff --git a/CHANGELOG.md b/CHANGELOG.md index b90e79ec..1ed35904 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ This file documents all notable changes made to ITFlow. +## [25.02] +### Fixed +- Changed several reports over to the new permissions/roles system +- Fixed empty task box showing for resolved/closed tickets + +### Added / Changed +- Client Portal now shows ticket categories + ## [25.01.3] ### Fixed - Fixed ticket assignment modal showing client contacts. diff --git a/admin_custom_link.php b/admin_custom_link.php index 13d705ee..6ade1314 100644 --- a/admin_custom_link.php +++ b/admin_custom_link.php @@ -96,8 +96,10 @@ $num_rows = mysqli_fetch_row(mysqli_query($mysqli, "SELECT FOUND_ROWS()")); $custom_link_location = intval($row['custom_link_location']); if ($custom_link_location == 1) { $custom_link_location_display = "Main Side Nav"; - } else { + } elseif ($custom_link_location == 2) { $custom_link_location_display = "Top Nav"; + } elseif ($custom_link_location == 3) { + $custom_link_location_display = "Client Portal Nav"; } ?> diff --git a/admin_mail_queue.php b/admin_mail_queue.php index 841695fc..5259ce96 100644 --- a/admin_mail_queue.php +++ b/admin_mail_queue.php @@ -177,7 +177,12 @@ $num_rows = mysqli_fetch_row(mysqli_query($mysqli, "SELECT FOUND_ROWS()")); - + diff --git a/admin_ticket_template_details.php b/admin_ticket_template_details.php index 2a6d5c8c..be7b8b88 100644 --- a/admin_ticket_template_details.php +++ b/admin_ticket_template_details.php @@ -112,7 +112,11 @@ $sql_task_templates = mysqli_query($mysqli, "SELECT * FROM task_templates WHERE