diff options
author | Zach Copley <zach@controlyourself.ca> | 2009-05-29 16:32:55 -0700 |
---|---|---|
committer | Zach Copley <zach@controlyourself.ca> | 2009-05-29 16:32:55 -0700 |
commit | eb76a3bbb36e1f73007cb9b602001ec14f6853c6 (patch) | |
tree | e77163826d24d7ac48fdc2d7c2a6834eeeb45356 /classes/Notice_inbox.php | |
parent | f66e996073b296ecbcaa76ac2fdb2378508bc2ac (diff) |
Ticket #1567 - API: Change before_id parameter to max_id
Diffstat (limited to 'classes/Notice_inbox.php')
-rw-r--r-- | classes/Notice_inbox.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/classes/Notice_inbox.php b/classes/Notice_inbox.php index dec14b0d1..65d7927b7 100644 --- a/classes/Notice_inbox.php +++ b/classes/Notice_inbox.php @@ -43,15 +43,15 @@ class Notice_inbox extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE - function stream($user_id, $offset, $limit, $since_id, $before_id, $since) + function stream($user_id, $offset, $limit, $since_id, $max_id, $since) { return Notice::stream(array('Notice_inbox', '_streamDirect'), array($user_id), 'notice_inbox:by_user:'.$user_id, - $offset, $limit, $since_id, $before_id, $since); + $offset, $limit, $since_id, $max_id, $since); } - function _streamDirect($user_id, $offset, $limit, $since_id, $before_id, $since) + function _streamDirect($user_id, $offset, $limit, $since_id, $max_id, $since) { $inbox = new Notice_inbox(); @@ -61,8 +61,8 @@ class Notice_inbox extends Memcached_DataObject $inbox->whereAdd('notice_id > ' . $since_id); } - if ($before_id != 0) { - $inbox->whereAdd('notice_id < ' . $before_id); + if ($max_id != 0) { + $inbox->whereAdd('notice_id < ' . $max_id); } if (!is_null($since)) { |