Exemplo n.º 1
0
 public function detail()
 {
     $msg = new MsgModel();
     $this->checkStatus();
     $msg->addOne($_GET['msg']);
     $result = $msg->getReplyFromMsg($_GET['msg']);
     $msgContent = $msg->getDetail($_GET['msg']);
     $this->assign('reply', $result);
     $this->assign('msg', $msgContent);
     $this->display();
 }