We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f1cdf6 commit 23fe611Copy full SHA for 23fe611
1 file changed
inc/targetticket.class.php
@@ -934,12 +934,9 @@ public function save(PluginFormcreatorFormAnswer $formanswer): ?CommonDBTM {
934
'date' => $_SESSION['glpi_currenttime'],
935
'users_id' => Session::getLoginUserID(),
936
'content' => $message,
937
- '_do_not_compute_takeintoaccount' => true
938
- ];
939
- // GLPI 9.4+
940
- $followUpInput += [
941
- 'items_id' => $ticketID,
942
- 'itemtype' => Ticket::class,
+ '_do_not_compute_takeintoaccount' => true,
+ 'itemtype' => Ticket::class,
+ 'items_id' => $ticketID,
943
];
944
$ticketFollowup = new ITILFollowup();
945
$ticketFollowup->add($followUpInput);
0 commit comments