/**
  * Reset the query -- EXPERIMENTAL
  *
  * Useful to requery with a slighlty moidified filterset
  */
 function reset()
 {
     // The SQL Query object:
     $this->ItemQuery = new ItemQuery($this->Cache->dbtablename, $this->Cache->dbprefix, $this->Cache->dbIDname);
     parent::reset();
 }
 /**
  * Reset the query -- EXPERIMENTAL
  *
  * Useful to requery with a slighlty moidified filterset
  */
 function reset()
 {
     // The SQL Query object:
     $this->CommentQuery = new CommentQuery($this->Cache->dbtablename, $this->Cache->dbprefix, $this->Cache->dbIDname);
     $this->CommentQuery->Blog = $this->Blog;
     $this->ItemQuery = new ItemQuery('T_items__item', 'post_', 'post_ID');
     $this->ItemQuery->blog = empty($this->Blog) ? 0 : $this->Blog->ID;
     parent::reset();
 }