aboutsummaryrefslogtreecommitdiff
path: root/app/Models/Feed.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Models/Feed.php')
-rw-r--r--app/Models/Feed.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Models/Feed.php b/app/Models/Feed.php
index 489062316..841749312 100644
--- a/app/Models/Feed.php
+++ b/app/Models/Feed.php
@@ -640,7 +640,7 @@ class FreshRSS_Feed extends Minz_Model {
foreach ($authors as $author) {
$authorName = $author->name != '' ? $author->name : $author->email;
if (is_string($authorName) && $authorName !== '') {
- $authorNames .= escapeToUnicodeAlternative(strip_tags($authorName), true) . '; ';
+ $authorNames .= html_only_entity_decode(strip_tags($authorName)) . '; ';
}
}
}