From c5569ff8d30d3cda4667d5e22923455a68482478 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 12 Apr 2013 16:30:40 +0400 Subject: decode html entities in article title on import --- include/rssfuncs.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()); -- cgit v1.2.3