From 81a9d30c6236450747307345b6a80a4bb5aa25db Mon Sep 17 00:00:00 2001 From: filip Date: Sun, 22 Apr 2018 13:48:03 +0200 Subject: get rid of HTML entities in blog/planet titles --- lib/news.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/news.php b/lib/news.php index 601785770..fa1852d14 100644 --- a/lib/news.php +++ b/lib/news.php @@ -135,7 +135,7 @@ function show_feed($locale, $news_title, $link, $feed, $count = 5, $skip = null, continue; if ($split && strpos($d['title'], ') : ') !== false) { - $title = explode(') : ', $d['title']); + $title = explode(') : ', html_entity_decode($d['title'])); $source = array_shift($title) . '): '; $source = (is_null($date_separator) ? $source : null); $title = implode(' : ', $title); -- cgit v1.2.1