Fix Merging Ticket where the merging ticket HTML would be lost during the merge to the another ticket

This commit is contained in:
johnnyq 2024-06-01 16:15:38 -04:00
parent 18d94cb33d
commit 307cc709d4
1 changed files with 1 additions and 1 deletions

View File

@ -1291,7 +1291,7 @@ if (isset($_POST['merge_ticket'])) {
$ticket_prefix = sanitizeInput($row['ticket_prefix']);
$ticket_number = intval($row['ticket_number']);
$ticket_subject = sanitizeInput($row['ticket_subject']);
$ticket_details = sanitizeInput($row['ticket_details']);
$ticket_details = mysqli_escape_string($mysqli, $row['ticket_details']);
// NEW PARENT ticket details
// Get merge into ticket id (as it may differ from the number)