]> git.wh0rd.org - tt-rss.git/commitdiff
start_ts for feeds: use date_entered for consistency
authorAndrew Dolgov <noreply@fakecake.org>
Sun, 9 Mar 2014 22:19:26 +0000 (02:19 +0400)
committerAndrew Dolgov <noreply@fakecake.org>
Sun, 9 Mar 2014 22:19:26 +0000 (02:19 +0400)
include/functions2.php

index 0c7a9c05be5813865eb8d7b8d2b8f805d83c8173..7c35b22cb1a2639f29f95f90d80c75ea6a6f5bd4 100644 (file)
 
                                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 = "";
                                }