summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2014-03-10 02:19:26 +0400
committerAndrew Dolgov <[email protected]>2014-03-10 02:19:26 +0400
commit99c19e1dcb31886e8003a0bd14416ca91491f61e (patch)
tree9bb07d68361692f8cfa9322e88d86e206847aeff /include
parentbaa65eedfd1a3b9e306e46de4cb0623fed558174 (diff)
start_ts for feeds: use date_entered for consistency
Diffstat (limited to 'include')
-rw-r--r--include/functions2.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/functions2.php b/include/functions2.php
index 0c7a9c05b..7c35b22cb 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 = "";
}