From 9bb05d9733fd8fbf8e27f6eb1d54427ff0086904 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Fri, 19 Apr 2013 15:00:25 +0200 Subject: also html decode author --- utility/feedfetcher.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'utility') diff --git a/utility/feedfetcher.php b/utility/feedfetcher.php index b6b0161da..f72a14439 100644 --- a/utility/feedfetcher.php +++ b/utility/feedfetcher.php @@ -120,7 +120,7 @@ class FeedFetcher implements IFeedFetcher { $author = $simplePieItem->get_author(); if ($author !== null) { - $item->setAuthor($author->get_name()); + $item->setAuthor(html_entity_decode($author->get_name())); } // TODO: make it work for video files also -- cgit v1.2.3