summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--templates/part.items.php4
-rw-r--r--utility/feedfetcher.php3
2 files changed, 3 insertions, 4 deletions
diff --git a/templates/part.items.php b/templates/part.items.php
index ac70e0658..18a052e6b 100644
--- a/templates/part.items.php
+++ b/templates/part.items.php
@@ -21,7 +21,9 @@
<h1 class="item_title">
<a ng-click="itemBusinessLayer.setRead(item.id)"
- target="_blank" href="{{ item.url }}">{{ item.title }}</a>
+ target="_blank" href="{{ item.url }}">
+ {{ item.title|ocRemoveTags:['em'] }}
+ </a>
</h1>
<h2 class="item_author">
diff --git a/utility/feedfetcher.php b/utility/feedfetcher.php
index c4ac638f7..1113877d0 100644
--- a/utility/feedfetcher.php
+++ b/utility/feedfetcher.php
@@ -74,10 +74,7 @@ class FeedFetcher implements IFeedFetcher {
throw new FetcherException('Could not initialize simple pie');
}
- // temporary try-catch to bypass SimplePie bugs
try {
- $simplePie->handle_content_type();
-
$items = array();
if ($feedItems = $simplePie->get_items()) {
foreach($feedItems as $feedItem) {