Hello,
Is this possible? ....in TTXTicket.pm at line 1195 is the code for the follow up msg
}
if ($query->param('do') && $t->{status} eq 'CLS' && !$isoper) {
$query->param(-name => 'email', -value => $t->{email});
$query->param(-name => 'name', -value => $t->{name});
$query->param(-name => 'subject', -value => $t->{subject});
$query->param(-name => 'problem', -value => TTXDictionary::translate('Posted as a followup to the closed Service Request').' #'.$t->{id}.
".\n\n".$query->param('problem'));
return 'newticket';
}
I think after line 1202 I can add a similar line to display the data from the closed ticket
$query->param(-name => 'Ticket', -value => $t->{ticket}); < --- NOT ACTUAL CODE
am I on to something here