public function showAction()
 {
     $entry_mapper = new Application_Model_EntryMapper();
     $entry = $entry_mapper->find($this->_getParam('id'));
     $entry->hide = 0;
     $entry_mapper->save($entry);
     return $this->_response->setRedirect('/admin/entry/list');
 }