aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/news.php2
1 files changed, 1 insertions, 1 deletions
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);