summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-02-20 00:13:13 +0300
committerAndrew Dolgov <[email protected]>2011-02-20 00:13:13 +0300
commitd564f2835c6714f73664ae6e6314dbd2d348bea6 (patch)
treee10c4821fa93d13f0ed3d123ca10dec0e3f0d34c /functions.php
parentc7a8deacd97242e33a1d4111ccd1da6810d28255 (diff)
update_rss_feed: do not strip tags of entry_content (refs #323)
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/functions.php b/functions.php
index 16780fd1f..20f205bce 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));