Ok if you go into scp/tickets.php and change case 'close' by adding a $msg to the error section does it actually show up when using the dropdown? For example. Change the case close...
From:
case 'close':
if(!$thisuser->isadmin() && !$thisuser->canCloseTickets()){
$errors='Perm. Denied. You are not allowed to close tickets.';
}else{
if($ticket->close()){
$msg='Ticket #'.$ticket->getExtId().' status set to CLOSED';
$note='Ticket closed without response by '.$thisuser->getName();
$ticket->logActivity('Ticket Closed',$note);
$page=$ticket=null; //Going back to main listing.
}else{
$errors='Problems closing the ticket. Try again';
}
}
break;
To:
case 'close':
if(!$thisuser->isadmin() && !$thisuser->canCloseTickets()){
$errors='Perm. Denied. You are not allowed to close tickets.';
}else{
if($ticket->close()){
$msg='Ticket #'.$ticket->getExtId().' status set to CLOSED';
$note='Ticket closed without response by '.$thisuser->getName();
$ticket->logActivity('Ticket Closed',$note);
$page=$ticket=null; //Going back to main listing.
}else{
$errors='Problems closing the ticket. Try again';
$msg='You must first select a Help Topic!';
}
}
break;