/**
  * Opens the selected post.
  */
 public function open()
 {
     if (!$this->board->getModeratorPermission('canClosePost')) {
         return;
     }
     if ($this->post != null && $this->post->isClosed) {
         $this->post->open();
     }
 }