Ejemplo n.º 1
0
 public function editAction()
 {
     $this->disableLayout = true;
     $commentId = intval($_GET['commentid']);
     $commentModel = new Admin_Model_Comment();
     $commenRow = $commentModel->select('*, UNIX_TIMESTAMP(comment_date) comment_date')->where('comment_id="' . $commentId . '"')->fetchAll();
     $this->view->commentRow = K_CupItems::stripFields($commenRow, 'comment');
     $this->view->commentRow = $this->view->commentRow[0];
     $this->render('edit');
 }