public function editAction()
 {
     $this->_helper->viewRenderer->setNoRender();
     $this->_helper->getHelper('layout')->disableLayout();
     $topicId = $this->_getParam("id");
     $topicName = $this->_getParam("name");
     $message = "";
     if ($topicId && $topicName) {
         //Check belong this user
         $topicTbl = new VC_DbTable_Store_Topic();
         $getTopic = $topicTbl->fetchRow("id = " . $topicId . " AND user_id = " . $this->userId);
         if ($getTopic) {
             $data = array('name' => $topicName);
             $topicTbl->update($data, "id = " . $topicId);
             $this->_helper->flashMessenger->addMessage(array('manage' => "Bạn đã cập nhật thành công."));
         } else {
             $this->_helper->flashMessenger->addMessage(array('manage' => "Thông tin chủ đề không hợp lệ."));
         }
     } else {
         $this->_helper->flashMessenger->addMessage(array('manage' => "Thông tin chủ đề không hợp lệ."));
     }
     echo $topicName;
     //$this->_redirect("topic/index");
 }