Exemplo n.º 1
0
 function _del_action()
 {
     $commentId = intval($this->get('comment_id'));
     if ($commentId <= 0) {
         throw new \Exception('firegit.u_notfound');
     }
     $mod = new \firegit\app\mod\util\Comment();
     $mod->delComment($commentId, $this->getData('user'));
 }