1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-15 21:25:55 +00:00

decode html entities in article title on import

This commit is contained in:
Andrew Dolgov
2013-04-12 16:30:40 +04:00
parent 3ab417c277
commit c5569ff8d3

View File

@@ -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());