1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-05 02:09:16 +00:00

start_ts for feeds: use date_entered for consistency

This commit is contained in:
Andrew Dolgov
2014-03-10 02:19:26 +04:00
parent baa65eedfd
commit 99c19e1dcb

View File

@@ -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 = "";
}