From b655fc74e433df15f61a00963581f2775e9ddbc1 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Thu, 25 Jul 2013 00:08:06 +0200 Subject: decode title twice to fix stupid feed authors' mistakes --- tests/unit/utility/FeedFetcherTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/unit') diff --git a/tests/unit/utility/FeedFetcherTest.php b/tests/unit/utility/FeedFetcherTest.php index 1ea06e2ad..94d410453 100644 --- a/tests/unit/utility/FeedFetcherTest.php +++ b/tests/unit/utility/FeedFetcherTest.php @@ -104,7 +104,7 @@ class FeedFetcherTest extends \OCA\AppFramework\Utility\TestUtility { $this->url = 'tests'; $this->permalink = 'http://permalink'; - $this->title = 'my title<'; + $this->title = 'my title&lt;'; $this->guid = 'hey guid here'; $this->body = 'let the bodies hit the floor test'; $this->body2 = 'let the bodies hit the floor test'; @@ -196,7 +196,7 @@ class FeedFetcherTest extends \OCA\AppFramework\Utility\TestUtility { $item->setStatus(0); $item->setUnread(); $item->setUrl($this->permalink); - $item->setTitle(html_entity_decode($this->title)); + $item->setTitle(html_entity_decode(html_entity_decode($this->title))); $item->setGuid($this->guid); $item->setGuidHash(md5($this->guid)); $item->setBody($this->body2); -- cgit v1.2.3