/**
  * Creates a new BoardThreadList object.
  */
 public function __construct(Board $board, $daysPrune = 100, $prefix = '', $status = '', $languageID = 0)
 {
     $this->board = $board;
     $this->daysPrune = $daysPrune;
     $this->prefix = $prefix;
     $this->status = $status;
     $this->languageID = $languageID;
     if ($this->board->enableRating != -1) {
         $this->enableRating = $this->board->enableRating;
     }
     parent::__construct();
 }
 /**
  * Creates a new SubscribedThreadList object.
  */
 public function __construct($daysPrune = 100)
 {
     $this->daysPrune = $daysPrune;
     parent::__construct();
 }