From ecb14114f1dffaea4152577f62d47b4f770e5b9e Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sun, 16 Oct 2005 09:29:09 +0100 Subject: fix broken article update functionality --- backend.php | 10 +++++++++- functions.php | 19 +++++++++++-------- 2 files changed, 20 insertions(+), 9 deletions(-) diff --git a/backend.php b/backend.php index 88fcdc6bc..730d17935 100644 --- a/backend.php +++ b/backend.php @@ -597,7 +597,7 @@ // strtotime($line["updated"]), $line["updated"], // strtotime($line["last_read"]) >= strtotime($line["updated"])); - if ($line["last_read"] != "" && $line["updated"] != "" && +/* if ($line["last_read"] != "" && $line["updated"] != "" && strtotime($line["last_read_noms"]) < strtotime($line["updated_noms"])) { $update_pic = "\"Updated\""; + } */ + + if ($line["last_read"] == "") { + $update_pic = "\"Updated\""; + } else { + $update_pic = "\"Updated\""; } if ($line["unread"] == "t" || $line["unread"] == "1") { diff --git a/functions.php b/functions.php index a2e29655b..888b0e6e8 100644 --- a/functions.php +++ b/functions.php @@ -189,14 +189,10 @@ $entry_guid = db_escape_string($entry_guid); - if (DB_TYPE == "pgsql") { - $extract_ts_qpart = ",EXTRACT(EPOCH FROM updated) as updated_timestamp"; - } - $result = db_query($link, " SELECT - id,last_read,no_orig_date,title,feed_id,content_hash - $extract_ts_qpart + id,last_read,no_orig_date,title,feed_id,content_hash, + substring(updated,1,19) as updated FROM ttrss_entries WHERE @@ -249,14 +245,17 @@ $orig_entry_id = db_fetch_result($result, 0, "id"); $orig_feed_id = db_fetch_result($result, 0, "feed_id"); +// print "OED: $orig_entry_id; OID: $orig_feed_id ; FID: $feed
"; + if ($orig_feed_id != $feed) { -// print "

Update from different feed ($orig_feed_id, $feed): $entry_guid [$entry_title]"; +// print "

GUID $entry_guid: update from different feed ($orig_feed_id, $feed): $entry_guid [$entry_title]"; continue; } $entry_is_modified = false; - $orig_timestamp = db_fetch_result($result, 0, "updated_timestamp"); + $orig_timestamp = strtotime(db_fetch_result($result, 0, "updated")); + $orig_content_hash = db_fetch_result($result, 0, "content_hash"); $orig_last_read = db_fetch_result($result, 0, "last_read"); $orig_no_orig_date = db_fetch_result($result, 0, "no_orig_date"); @@ -265,6 +264,8 @@ $last_read_qpart = ""; if ($orig_content_hash != $content_hash) { +// print "$orig_content_hash :: $content_hash
"; + if (UPDATE_POST_ON_CHECKSUM_CHANGE) { $last_read_qpart = 'last_read = null,'; } @@ -281,6 +282,8 @@ if ($entry_is_modified) { +// print "$entry_guid Modified!
"; + $entry_comments = db_escape_string($entry_comments); $entry_content = db_escape_string($entry_content); $entry_title = db_escape_string($entry_title); -- cgit v1.2.3