From: Andrew Dolgov Date: Sat, 5 Dec 2015 00:10:57 +0000 (+0300) Subject: calculate_article_hash: strip tags before hashing fields X-Git-Tag: 16.3~74 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;ds=sidebyside;h=24e6ff5d1c29654fad74666a6d1bd061cf15cd30;p=tt-rss.git calculate_article_hash: strip tags before hashing fields --- diff --git a/include/rssfuncs.php b/include/rssfuncs.php index af4762c7..115d9c9c 100755 --- a/include/rssfuncs.php +++ b/include/rssfuncs.php @@ -9,7 +9,11 @@ foreach ($article as $k => $v) { if ($k != "feed" && isset($v)) { - $tmp .= sha1("$k:" . (is_array($v) ? implode(",", $v) : $v)); + $x = strip_tags(is_array($v) ? implode(",", $v) : $v); + + //_debug("$k:" . sha1($x) . ":" . htmlspecialchars($x), true); + + $tmp .= sha1("$k:" . sha1($x)); } } @@ -1043,6 +1047,8 @@ SET score = '$score' WHERE ref_id = '$ref_id'"); if ($mark_unread_on_update) { + _debug("article updated, marking unread as requested.", $debug_enabled); + db_query("UPDATE ttrss_user_entries SET last_read = null, unread = true WHERE ref_id = '$ref_id'"); }