remove testing construction

This commit is contained in:
ghost 2023-06-26 15:59:08 +03:00
parent ed240d53b0
commit 29197ab904

View File

@ -200,7 +200,7 @@ class MySQL {
public function getHostPagesByIndexed() {
$query = $this->_db->query('SELECT * FROM `hostPage` WHERE `timeUpdated` IS NOT NULL AND `timeBanned` IS NULL LIMIT 100,1'); // @TODO
$query = $this->_db->query('SELECT * FROM `hostPage` WHERE `timeUpdated` IS NOT NULL AND `timeBanned` IS NULL');
return $query->fetchAll();
}