Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix ticket read no right message #248

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [unrelease] -

### Fixed

- Correction of the read no right message ticket and redirection
Lainow marked this conversation as resolved.
Show resolved Hide resolved

## [2.9.9] - 2024-09-10

### Fixed
Expand Down
8 changes: 7 additions & 1 deletion front/ticket.form.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@

include('../../../inc/includes.php');

$track = new Ticket();
if (isset($_POST['escalate'])) {
$group_id = (int)$_POST['groups_id'];
$tickets_id = (int)$_POST['tickets_id'];
Expand Down Expand Up @@ -88,4 +89,9 @@
}
}

Html::back();
Session::addMessageAfterRedirect(
__('You have been redirected because you no longer have access to this ticket'),
true,
ERROR
);
Html::redirect($CFG_GLPI["root_doc"] . "/front/ticket.php");