From d0c7c99d5e1eb27281431231640c7e8c019b90e1 Mon Sep 17 00:00:00 2001 From: Mario Date: Mon, 18 May 2020 11:06:46 +0000 Subject: use strip_tags() on rss titles --- include/feedutils.php | 1 + 1 file changed, 1 insertion(+) (limited to 'include') diff --git a/include/feedutils.php b/include/feedutils.php index 9ff09cc66..0a9af7ee1 100644 --- a/include/feedutils.php +++ b/include/feedutils.php @@ -452,6 +452,7 @@ function get_atom_elements($feed, $item) { else { $res['title'] = bbcode($res['title'], [ 'tryoembed' => false ]); $res['title'] = html2plain($res['title'], 0, true); + $res['title'] = strip_tags($res['title']); $res['title'] = html_entity_decode($res['title'], ENT_QUOTES, 'UTF-8'); $res['title'] = preg_replace("/https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,\@]+/", "", $res['title']); while (strpos($res['title'], "\n") !== false) -- cgit v1.2.3