summaryrefslogtreecommitdiff
path: root/include/rssfuncs.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-04-12 16:30:40 +0400
committerAndrew Dolgov <[email protected]>2013-04-12 16:30:40 +0400
commitc5569ff8d30d3cda4667d5e22923455a68482478 (patch)
tree6ba608784c13f586d9a5a675a1b7674819686662 /include/rssfuncs.php
parent3ab417c2775b95e5ad4896b0a2c54ef19550f4c4 (diff)
decode html entities in article title on import
Diffstat (limited to 'include/rssfuncs.php')
-rw-r--r--include/rssfuncs.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rssfuncs.php b/include/rssfuncs.php
index 7c2e1655b..6e3ef4cf1 100644
--- a/include/rssfuncs.php
+++ b/include/rssfuncs.php
@@ -524,7 +524,7 @@
_debug("update_rss_feed: date $entry_timestamp [$entry_timestamp_fmt]");
}
- $entry_title = $item->get_title();
+ $entry_title = html_entity_decode($item->get_title());
$entry_link = rewrite_relative_url($site_url, $item->get_link());