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
1 changed files with 1 additions and 1 deletions

View File

@ -700,7 +700,7 @@
if ($start_ts) { if ($start_ts) {
$start_ts_formatted = date("Y/m/d H:i:s", strtotime($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 { } else {
$start_ts_query_part = ""; $start_ts_query_part = "";
} }