Update modal footer and header to user SERVER Document root with absolute path intead of relative

This commit is contained in:
johnnyq 2025-10-06 15:13:52 -04:00
parent 416a8d9a94
commit a4ed906dd1
3 changed files with 22 additions and 4 deletions

View File

@ -2,6 +2,24 @@
This file documents all notable changes made to ITFlow.
## [25.10.1]
### Fixes
- Fix regression missing custom Favicon.
- Update SMTP and IMAP provider to allow for empty strings, empty means disabled.
- Fix Client portal Microsoft SSO Logins.
- Fix regression in Vendor Templates.
- Fix refression in some broken links from user to agent.
- Fix Project edit.
- Prevent open redirects upon agent login.
- Fix regression on switching to Webklex IMAP to allow for no SSL/TLS in IMAP.
- Fix Setup Redirect not behaving properly when setup hasnt been performed.
### Added / Changed
- Support for HTML Signatures.
- Add Edit Project Functionality in a ticket.
## [25.10]
### Breaking Changes

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.
*/
DEFINE("APP_VERSION", "25.10");
DEFINE("APP_VERSION", "25.10.1");

View File

@ -1,8 +1,8 @@
<?php
require_once "../../../config.php";
require_once "../../../functions.php";
require_once "../../../includes/check_login.php";
require_once $_SERVER['DOCUMENT_ROOT'] . '/config.php';
require_once $_SERVER['DOCUMENT_ROOT'] . '/functions.php';
require_once $_SERVER['DOCUMENT_ROOT'] . '/includes/check_login.php';
header('Content-Type: application/json');