]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/repliesrss.php
add Net Socket
[quix0rs-gnu-social.git] / actions / repliesrss.php
index b811db7eb3067b020cb463202ea061427dacc1cd..7369db5e047ae6f16d8ddbf17f53f512512d0a86 100644 (file)
@@ -42,27 +42,13 @@ class RepliesrssAction extends Rss10Action {
        function get_notices($limit=0) {
 
                $user = $this->user;
-               $notices = array();
-
-               $reply = new Reply();
-               $reply->profile_id = $user->id;
-               $reply->orderBy('modified DESC');
-               if ($limit) {
-                       $reply->limit(0, $limit);
-               }
 
-               $cnt = $reply->find();
+               $notice = $user->getReplies(0, ($limit == 0) ? 48 : $limit);
 
-               if ($cnt) {
-                       while ($reply->fetch()) {
-                               $notice = new Notice();
-                               $notice->id = $reply->notice_id;
-                               $result = $notice->find(true);
-                               if (!$result) {
-                                       continue;
-                               }
-                               $notices[] = clone($notice);
-                       }
+               $notices = array();
+               
+               while ($notice->fetch()) {
+                       $notices[] = clone($notice);
                }
 
                return $notices;