summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Prodromou <evan@status.net>2010-10-25 11:18:49 -0400
committerEvan Prodromou <evan@status.net>2010-10-25 11:18:49 -0400
commitaef88c7ceeb219c12d4ebce65b6f1fbccbc1458a (patch)
tree397023887360859fbc144d326b61c34e3851affc
parent968f9b0513f1a2329ad3d9815303b32f94487764 (diff)
max_id is inclusive
-rw-r--r--classes/Notice_tag.php2
-rw-r--r--classes/Profile.php2
-rw-r--r--classes/Reply.php2
3 files changed, 3 insertions, 3 deletions
diff --git a/classes/Notice_tag.php b/classes/Notice_tag.php
index a5d0716a7..6eada7022 100644
--- a/classes/Notice_tag.php
+++ b/classes/Notice_tag.php
@@ -60,7 +60,7 @@ class Notice_tag extends Memcached_DataObject
}
if ($max_id != 0) {
- $nt->whereAdd('notice_id < ' . $max_id);
+ $nt->whereAdd('notice_id <= ' . $max_id);
}
$nt->orderBy('notice_id DESC');
diff --git a/classes/Profile.php b/classes/Profile.php
index a359a02d9..37d2c571f 100644
--- a/classes/Profile.php
+++ b/classes/Profile.php
@@ -240,7 +240,7 @@ class Profile extends Memcached_DataObject
}
if ($max_id != 0) {
- $query .= " and id < $max_id";
+ $query .= " and id <= $max_id";
}
$query .= ' order by id DESC';
diff --git a/classes/Reply.php b/classes/Reply.php
index dc6296bda..da8a4f685 100644
--- a/classes/Reply.php
+++ b/classes/Reply.php
@@ -55,7 +55,7 @@ class Reply extends Memcached_DataObject
}
if ($max_id != 0) {
- $reply->whereAdd('notice_id < ' . $max_id);
+ $reply->whereAdd('notice_id <= ' . $max_id);
}
$reply->orderBy('notice_id DESC');