summaryrefslogtreecommitdiffstats
path: root/fetcher
diff options
context:
space:
mode:
Diffstat (limited to 'fetcher')
-rw-r--r--fetcher/feedfetcher.php6
1 files changed, 2 insertions, 4 deletions
diff --git a/fetcher/feedfetcher.php b/fetcher/feedfetcher.php
index fdc062d6c..705404518 100644
--- a/fetcher/feedfetcher.php
+++ b/fetcher/feedfetcher.php
@@ -138,10 +138,8 @@ class FeedFetcher implements IFeedFetcher {
// links should always open in a new window
$item->setBody(
- str_replace(
- '<a', '<a target="_blank"', $this->purifier->purify(
- $simplePieItem->get_content()
- )
+ $this->purifier->purify(
+ $simplePieItem->get_content()
)
);