comparison core/modules/aggregator/src/FeedStorage.php @ 17:129ea1e6d783

Update, including to Drupal core 8.6.10
author Chris Cannam
date Thu, 28 Feb 2019 13:21:36 +0000
parents 4c8ae668cc8c
children af1871eacc83
comparison
equal deleted inserted replaced
16:c2387f117808 17:129ea1e6d783
14 14
15 /** 15 /**
16 * {@inheritdoc} 16 * {@inheritdoc}
17 */ 17 */
18 public function getFeedIdsToRefresh() { 18 public function getFeedIdsToRefresh() {
19 return $this->database->query('SELECT fid FROM {aggregator_feed} WHERE queued = 0 AND checked + refresh < :time AND refresh <> :never', [ 19 return $this->database->query('SELECT fid FROM {' . $this->getBaseTable() . '} WHERE queued = 0 AND checked + refresh < :time AND refresh <> :never', [
20 ':time' => REQUEST_TIME, 20 ':time' => REQUEST_TIME,
21 ':never' => AGGREGATOR_CLEAR_NEVER, 21 ':never' => AGGREGATOR_CLEAR_NEVER,
22 ])->fetchCol(); 22 ])->fetchCol();
23 } 23 }
24 24