summaryrefslogtreecommitdiffstats
path: root/templates/part.listfeed.php
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2012-10-24 23:28:38 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2012-10-24 23:28:38 +0200
commit8f9f5707418484b07f5d40101765d624dacce510 (patch)
tree16eb77cce69dc9f50161d3ea34b43d0e93afc6a5 /templates/part.listfeed.php
parentfbd63a6846061a7d99546bd9a97d97daa1c442c1 (diff)
removed unnecessary html special chars decode
Diffstat (limited to 'templates/part.listfeed.php')
-rw-r--r--templates/part.listfeed.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/part.listfeed.php b/templates/part.listfeed.php
index 2976e98ca..5db86d975 100644
--- a/templates/part.listfeed.php
+++ b/templates/part.listfeed.php
@@ -8,7 +8,7 @@ $l = new OC_l10n('news');
$feed = isset($_['feed']) ? $_['feed'] : null;
-htmlspecialchars_decode($feedTitle = $feed->getTitle());
+$feedTitle = $feed->getTitle();
$feedId = $feed->getId();
$unreadItemsCount = isset($_['unreadItemsCount']) ? $_['unreadItemsCount'] : null;
$favicon = $feed->getFavicon();