update_rss_feed: do not strip tags of entry_content (refs #323)

This commit is contained in:
Andrew Dolgov 2011-02-20 00:13:13 +03:00
parent c7a8deacd9
commit d564f2835c
1 changed files with 1 additions and 1 deletions

View File

@ -954,7 +954,7 @@
$result = db_query($link, "SELECT id FROM ttrss_entries
WHERE guid = '$entry_guid'");
$entry_content = db_escape_string($entry_content, true);
$entry_content = db_escape_string($entry_content, false);
$content_hash = "SHA1:" . sha1(strip_tags($entry_content));