From: Andrew Dolgov Date: Sat, 19 Feb 2011 21:13:13 +0000 (+0300) Subject: update_rss_feed: do not strip tags of entry_content (refs #323) X-Git-Tag: 1.5.2~36 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=d564f2835c6714f73664ae6e6314dbd2d348bea6;p=tt-rss.git update_rss_feed: do not strip tags of entry_content (refs #323) --- diff --git a/functions.php b/functions.php index 16780fd1..20f205bc 100644 --- a/functions.php +++ b/functions.php @@ -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));