Beispiel #1
0
 public function executeCreateReply()
 {
     $message = strip_tags($this->getRequestParameter('message'));
     $ticket_id = $this->getRequestParameter('ticket_id');
     sfTicketPeer::replyTicket($ticket_id, $message, sfGuardUser::getProfileUserId($this->getContext()->getUser()));
     return $this->redirect('sfSupport/history');
 }