summaryrefslogtreecommitdiffstats
path: root/lib/feedmapper.php
diff options
context:
space:
mode:
authorAlessandro Cosentino <cosenal@gmail.com>2012-08-19 15:13:39 -0400
committerAlessandro Cosentino <cosenal@gmail.com>2012-08-19 15:13:39 -0400
commit32bd7c839c8538b9f892c11893c140bb70677636 (patch)
tree466504d558d42353663354cf66960a5abee081e5 /lib/feedmapper.php
parent608b3c7f8aefbb8c7f11d3c0dd548e5a04b4b0b0 (diff)
now saves item's author in db
Diffstat (limited to 'lib/feedmapper.php')
-rw-r--r--lib/feedmapper.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/feedmapper.php b/lib/feedmapper.php
index e3d8fa67f..82fff36ec 100644
--- a/lib/feedmapper.php
+++ b/lib/feedmapper.php
@@ -34,7 +34,7 @@ class FeedMapper {
*/
public function fromRow($row){
$url = $row['url'];
- $title = htmlspecialchars_decode($row['title']);
+ $title = $row['title'];
$id = $row['id'];
$feed = new Feed($url, $title, null, $id);
$favicon = $row['favicon_link'];