Skip to content
Open
Changes from all 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
5 changes: 5 additions & 0 deletions src/Ticket.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
use Group_Ticket;
use Group_User;
use Html;
use NotificationEvent;
use Planning;
use Session;
use Ticket_User;
Expand Down Expand Up @@ -652,6 +653,10 @@ public function launchTicketTransfer($params)
"transferticketentity"
) . " $theEntity " . $groupText
]);
//task created - trigger notification
if (class_exists('\NotificationEvent')) {
\NotificationEvent::raiseEvent('update', $ticket);
}

$ticket = new \Ticket();
$ticket->getFromDB($params['id_ticket']);
Expand Down