In scp/tickets.php ~ line 86
change this
if(!$errors && ($respId=$ticket->postResponse($_POST,$_POST,$_POST,$_FILES))){
to
if(!$errors && ($respId=$ticket->postResponse($_POST,$_POST,$_POST,$_FILES,$_POST))){
And because we changed the function we need to change in scp/tickets.php ~ line 336
$ticket->postResponse($msgId,$_POST,'none',null,false);
to be
$ticket->postResponse($msgId,$_POST,'none',null,null,false);
In include/class.ticket.php ~ line 550
change this
function postResponse($msgid,$response,$signature='none',$attachment=false,$canalert=true){
to
function postResponse($msgid,$response,$signature='none',$attachment=false,$ticket_status,$canalert=true){
In include/class.ticket.php ~ line 570
After this
//Send Response to client...based on the template...
//TODO: check department level templates...if set.
$sql='SELECT ticket_reply_subj,ticket_reply_body FROM '.EMAIL_TEMPLATE_TABLE.
' WHERE cfg_id='.db_input($cfg->getId()).' AND tpl_id='.db_input($cfg->getDefaultTemplateId());
$resp=db_query($sql);
if(db_num_rows($resp) && list($subj,$body)=db_fetch_row($resp)){
ADD this
if(strtolower($ticket_status)=="close"||strtolower($ticket_status)=="closed") $subj = " - Closed - Re: %subject";