mirror of https://github.com/itflow-org/itflow
Fix Merging Ticket where the merging ticket HTML would be lost during the merge to the another ticket
This commit is contained in:
parent
18d94cb33d
commit
307cc709d4
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue