Explorar el Código

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

Conflicts:
	app/models/Feed.php
Marien Fressinaud hace 12 años
padre
commit
5072774f02
Se han modificado 1 ficheros con 1 adiciones y 3 borrados
  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 ());