From: Andrew Dolgov Date: Sun, 9 Mar 2014 22:19:26 +0000 (+0400) Subject: start_ts for feeds: use date_entered for consistency X-Git-Tag: 1.12~21 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=99c19e1dcb31886e8003a0bd14416ca91491f61e;p=tt-rss.git start_ts for feeds: use date_entered for consistency --- diff --git a/include/functions2.php b/include/functions2.php index 0c7a9c05..7c35b22c 100644 --- a/include/functions2.php +++ b/include/functions2.php @@ -700,7 +700,7 @@ if ($start_ts) { $start_ts_formatted = date("Y/m/d H:i:s", strtotime($start_ts)); - $start_ts_query_part = "updated >= '$start_ts_formatted' AND"; + $start_ts_query_part = "date_entered >= '$start_ts_formatted' AND"; } else { $start_ts_query_part = ""; }