mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-03-05 23:17:00 -05:00
Merge branch 'htmlencoding' of https://github.com/Alkarex/FreshRSS into Alkarex-htmlencoding
Conflicts: app/models/Feed.php
This commit is contained in:
@@ -214,9 +214,7 @@ class Feed extends Model {
|
||||
$entries = array ();
|
||||
|
||||
foreach ($feed->get_items () as $item) {
|
||||
$title = $item->get_title ();
|
||||
$title = preg_replace('#<a(.+)>(.+)</a>#', '\\2', $title);
|
||||
$title = htmlentities($title, ENT_NOQUOTES, 'UTF-8');
|
||||
$title = strip_tags($item->get_title ());
|
||||
$author = $item->get_author ();
|
||||
$link = $item->get_permalink ();
|
||||
$date = strtotime ($item->get_date ());
|
||||
|
||||
Reference in New Issue
Block a user