summaryrefslogtreecommitdiffstats
path: root/lib/feedmapper.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/feedmapper.php')
-rw-r--r--lib/feedmapper.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/feedmapper.php b/lib/feedmapper.php
index 4220f99d7..27c1276a8 100644
--- a/lib/feedmapper.php
+++ b/lib/feedmapper.php
@@ -47,7 +47,6 @@ class FeedMapper {
/**
* @brief as a list that can be easily parsed using JSON
- * @param userid
* @returns
*/
public function findAll() {
@@ -66,13 +65,14 @@ class FeedMapper {
$id = $row['id'];
$folderid = $row['folder_id'];
$userid = $row['user_id'];
- $feeds[] = array("url" => $url, "id" => $id, "folderid" => $folderid, 'userid' => $userid );
+ $title = $row['title'];
+ $feeds[] = array("url" => $url, "id" => $id, "folderid" => $folderid,
+ 'userid' => $userid, 'title' => $title );
}
return $feeds;
}
-
/**
* @brief returns the number of feeds that a user has
* @returns the number of feeds that a user has