diff options
author | Zach Copley <zach@controlyourself.ca> | 2009-05-29 16:54:24 -0700 |
---|---|---|
committer | Zach Copley <zach@controlyourself.ca> | 2009-05-29 16:54:24 -0700 |
commit | 425f9d703c5258920079b268c085b0c7112c3b70 (patch) | |
tree | 53b9a2f06accae2bd7fa71e172c09ba4c61793a9 /actions | |
parent | eb76a3bbb36e1f73007cb9b602001ec14f6853c6 (diff) |
Ticket #1567 - Change max_id to return notices <= ID instead of < ID
Diffstat (limited to 'actions')
-rw-r--r-- | actions/twitapidirect_messages.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/twitapidirect_messages.php b/actions/twitapidirect_messages.php index ab8f07810..d2dbdb619 100644 --- a/actions/twitapidirect_messages.php +++ b/actions/twitapidirect_messages.php @@ -75,7 +75,7 @@ class Twitapidirect_messagesAction extends TwitterapiAction } if ($max_id) { - $message->whereAdd("id < $max_id"); + $message->whereAdd("id <= $max_id"); } if ($since_id) { |