Mercurial > hg > isophonics-drupal-site
diff core/modules/aggregator/src/FeedStorage.php @ 18:af1871eacc83
Update to Drupal core 8.7.1
author | Chris Cannam |
---|---|
date | Thu, 09 May 2019 15:33:08 +0100 |
parents | 129ea1e6d783 |
children |
line wrap: on
line diff
--- a/core/modules/aggregator/src/FeedStorage.php Thu Feb 28 13:21:36 2019 +0000 +++ b/core/modules/aggregator/src/FeedStorage.php Thu May 09 15:33:08 2019 +0100 @@ -18,7 +18,7 @@ public function getFeedIdsToRefresh() { return $this->database->query('SELECT fid FROM {' . $this->getBaseTable() . '} WHERE queued = 0 AND checked + refresh < :time AND refresh <> :never', [ ':time' => REQUEST_TIME, - ':never' => AGGREGATOR_CLEAR_NEVER, + ':never' => static::CLEAR_NEVER, ])->fetchCol(); }