]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
correctly return values
authorEvan Prodromou <evan@status.net>
Thu, 7 Apr 2011 19:27:40 +0000 (15:27 -0400)
committerEvan Prodromou <evan@status.net>
Thu, 7 Apr 2011 19:27:40 +0000 (15:27 -0400)
classes/User.php

index c968375115a6bc9f6691f9ebeebdd87df2a47033..f2b5b083718dbaa556c67ccd3b5e21a787df270b 100644 (file)
@@ -488,28 +488,28 @@ class User extends Memcached_DataObject
 
     function noticesWithFriends($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0)
     {
-        $this->noticeInbox($offset, $limit, $since_id, $before_id);
+        return $this->noticeInbox($offset, $limit, $since_id, $before_id);
     }
 
     // DEPRECATED, use noticeInbox()
 
     function noticesWithFriendsThreaded($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0)
     {
-        $this->noticeInbox($offset, $limit, $since_id, $before_id);
+        return $this->noticeInbox($offset, $limit, $since_id, $before_id);
     }
 
     // DEPRECATED, use noticeInbox()
 
     function noticeInboxThreaded($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0)
     {
-        $this->noticeInbox($offset, $limit, $since_id, $before_id);
+        return $this->noticeInbox($offset, $limit, $since_id, $before_id);
     }
 
     // DEPRECATED, use noticeInbox()
 
     function friendsTimeline($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0)
     {
-        $this->noticeInbox($offset, $limit, $since_id, $before_id);
+        return $this->noticeInbox($offset, $limit, $since_id, $before_id);
     }
 
     // DEPRECATED, use noticeInbox()