public function deleteownedstorycommentAction()
 {
     if ($this->getRequest()->isPost() && $this->_ajaxRequest) {
         if ($commentid = $this->getRequest()->getParam('comment', FALSE)) {
             $storyService = new Service_Userstory();
             if ($storyService->deleteOwnedStoryComment($commentid)) {
                 $this->_response->appendBody('1');
                 return;
             } else {
                 $this->_response->appendBody('0');
                 return;
             }
         } else {
             $this->_response->appendBody('0');
             return;
         }
     } else {
         return $this->_redirect('/profile');
     }
 }