From: Andrew Dolgov Date: Fri, 12 Apr 2013 12:30:40 +0000 (+0400) Subject: decode html entities in article title on import X-Git-Tag: 1.7.9~25^2~237 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=c5569ff8d30d3cda4667d5e22923455a68482478;p=tt-rss.git decode html entities in article title on import --- diff --git a/include/rssfuncs.php b/include/rssfuncs.php index 7c2e1655..6e3ef4cf 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());