summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-03-19 00:42:59 +0400
committerAndrew Dolgov <[email protected]>2013-03-19 00:42:59 +0400
commitf935d98e5d81c94f926d6b9cf232ea9414fe40ab (patch)
treea0144b39f5eed215320c6d66c6607bbf414367d5 /include
parentbe124dc2361539455121fa29c77bf60a85014b13 (diff)
properly fix the cache_images issue (refs #578)
Diffstat (limited to 'include')
-rw-r--r--include/rssfuncs.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/rssfuncs.php b/include/rssfuncs.php
index a95280a31..1180b0adb 100644
--- a/include/rssfuncs.php
+++ b/include/rssfuncs.php
@@ -573,6 +573,8 @@
$entry_author = db_escape_string($article["author"]);
$entry_link = db_escape_string($article["link"]);
$entry_plugin_data = db_escape_string($article["plugin_data"]);
+ $entry_content = $article["content"]; // escaped below
+
if ($debug_enabled) {
_debug("update_rss_feed: plugin data: $entry_plugin_data");
@@ -581,7 +583,7 @@
if ($cache_images && is_writable(CACHE_DIR . '/images'))
$entry_content = cache_images($entry_content, $site_url, $debug_enabled);
- $entry_content = db_escape_string($article["content"], false);
+ $entry_content = db_escape_string($entry_content, false);
$content_hash = "SHA1:" . sha1($entry_content);