From ac53063ab9a0a2a13ea40cafd5e6e2b383976578 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sun, 21 Aug 2005 17:16:41 +0100 Subject: basic functionality pass 4 --- functions.php | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'functions.php') diff --git a/functions.php b/functions.php index 76917935c..3e5013472 100644 --- a/functions.php +++ b/functions.php @@ -74,13 +74,17 @@ $md5_hash = pg_fetch_result($result, 0, "md5_hash"); if ($md5_hash != $content_md5) - $unread = "false"; + $unread = "true"; + + if ($unread) { + $updated_query_part = "updated = '$entry_timestamp',"; + } $query = "UPDATE ttrss_entries SET title ='$entry_title', link = '$entry_link', - updated = '$entry_timestamp', + $updated_query_part content = '$entry_content', md5_hash = '$content_md5', unread = '$unread' @@ -90,8 +94,8 @@ $result = pg_query($link, $query); - // print "$entry_guid - $entry_timestamp - $entry_title - - // $entry_link - $entry_id
"; +// print "$entry_guid - $entry_timestamp - $entry_title - +// $entry_link - $entry_id
"; } -- cgit v1.2.3