/** * Displays a particular model. * @param integer $id the ID of the model to be displayed */ public function actionView($id) { $post=$this->loadModel($id, true); $comment=$this->createComment($post); $this->render('view',array( 'model' => $post, 'comment' => $comment, )); }