Преглед изворни кода

Merge branch 'htmlencoding' of https://github.com/Alkarex/FreshRSS into Alkarex-htmlencoding

Conflicts:
	app/models/Feed.php
Marien Fressinaud пре 12 година
родитељ
комит
5072774f02
1 измењених фајлова са 1 додато и 3 уклоњено
  1. 1 3
      app/models/Feed.php

+ 1 - 3
app/models/Feed.php

@@ -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 ());