瀏覽代碼

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