From 924a89ebf33b5ce82a76aa4f9b4726cb60282528 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sun, 6 Oct 2013 15:38:58 +0400 Subject: getFeedArticles: use date_entered for fresh feed same as queryFeedHeadlines (closes #780) --- include/functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/functions.php') diff --git a/include/functions.php b/include/functions.php index c6ee6dfbd..3ac413667 100644 --- a/include/functions.php +++ b/include/functions.php @@ -1421,9 +1421,9 @@ $intl = get_pref("FRESH_ARTICLE_MAX_AGE", $owner_uid); if (DB_TYPE == "pgsql") { - $match_part .= " AND updated > NOW() - INTERVAL '$intl hour' "; + $match_part .= " AND date_entered > NOW() - INTERVAL '$intl hour' "; } else { - $match_part .= " AND updated > DATE_SUB(NOW(), INTERVAL $intl HOUR) "; + $match_part .= " AND date_entered > DATE_SUB(NOW(), INTERVAL $intl HOUR) "; } $need_entries = true; -- cgit v1.2.3