forked from GNUsocial/gnu-social
correctly return values
This commit is contained in:
parent
5dfb8e2bc4
commit
84d848f78c
@ -488,28 +488,28 @@ class User extends Memcached_DataObject
|
|||||||
|
|
||||||
function noticesWithFriends($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0)
|
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()
|
// DEPRECATED, use noticeInbox()
|
||||||
|
|
||||||
function noticesWithFriendsThreaded($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0)
|
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()
|
// DEPRECATED, use noticeInbox()
|
||||||
|
|
||||||
function noticeInboxThreaded($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0)
|
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()
|
// DEPRECATED, use noticeInbox()
|
||||||
|
|
||||||
function friendsTimeline($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0)
|
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()
|
// DEPRECATED, use noticeInbox()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user