Update modal footer and header to user SERVER Document root with absolute path intead of relative
This commit is contained in:
18
CHANGELOG.md
18
CHANGELOG.md
@@ -2,6 +2,24 @@
|
|||||||
|
|
||||||
This file documents all notable changes made to ITFlow.
|
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]
|
## [25.10]
|
||||||
|
|
||||||
### Breaking Changes
|
### Breaking Changes
|
||||||
|
|||||||
@@ -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.
|
* 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");
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
require_once "../../../config.php";
|
require_once $_SERVER['DOCUMENT_ROOT'] . '/config.php';
|
||||||
require_once "../../../functions.php";
|
require_once $_SERVER['DOCUMENT_ROOT'] . '/functions.php';
|
||||||
require_once "../../../includes/check_login.php";
|
require_once $_SERVER['DOCUMENT_ROOT'] . '/includes/check_login.php';
|
||||||
|
|
||||||
header('Content-Type: application/json');
|
header('Content-Type: application/json');
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user