コード例 #1
0
ファイル: actions.class.php プロジェクト: sgrove/cothinker
 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');
 }