summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-05-19 06:02:51 +0100
committerAndrew Dolgov <[email protected]>2007-05-19 06:02:51 +0100
commit7e43ad58a66ccca81b063013b5d45e09f90e1a1c (patch)
treeeaff458c580925557732b47d58d39b4815fe73d7 /functions.php
parent8d03971834c105112909753af12bbc066709165f (diff)
update_rss_feed: fix article update detection
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/functions.php b/functions.php
index 568c13995..d3245ce53 100644
--- a/functions.php
+++ b/functions.php
@@ -589,7 +589,6 @@
// print "<br>";
$entry_content_unescaped = $entry_content;
- $content_hash = "SHA1:" . sha1(strip_tags($entry_content));
$entry_comments = strip_tags($item["comments"]);
@@ -621,6 +620,9 @@
WHERE guid = '$entry_guid'");
$entry_content = db_escape_string($entry_content);
+
+ $content_hash = "SHA1:" . sha1(strip_tags($entry_content));
+
$entry_title = db_escape_string($entry_title);
$entry_link = db_escape_string($entry_link);
$entry_comments = db_escape_string($entry_comments);
@@ -808,10 +810,11 @@
if (get_pref($link, "UPDATE_POST_ON_CHECKSUM_CHANGE", $owner_uid, false) &&
($content_hash != $orig_content_hash)) {
+// print "<!-- [$entry_title] $content_hash vs $orig_content_hash -->";
$post_needs_update = true;
}
- if ($orig_title != $entry_title) {
+ if (db_escape_string($orig_title) != $entry_title) {
$post_needs_update = true;
}
@@ -837,6 +840,7 @@
db_query($link, "UPDATE ttrss_entries
SET title = '$entry_title', content = '$entry_content',
+ content_hash = '$content_hash',
num_comments = '$num_comments'
WHERE id = '$ref_id'");