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/User_group.php | |
parent | f66e996073b296ecbcaa76ac2fdb2378508bc2ac (diff) |
Ticket #1567 - API: Change before_id parameter to max_id
Diffstat (limited to 'classes/User_group.php')
-rwxr-xr-x | classes/User_group.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/classes/User_group.php b/classes/User_group.php index 7cc31e702..43591d655 100755 --- a/classes/User_group.php +++ b/classes/User_group.php @@ -58,7 +58,7 @@ class User_group extends Memcached_DataObject return Notice::getStreamByIds($ids); } - function _streamDirect($offset, $limit, $since_id, $before_id, $since) + function _streamDirect($offset, $limit, $since_id, $max_id, $since) { $inbox = new Group_inbox(); @@ -71,8 +71,8 @@ class User_group 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)) { |