]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
max_id is inclusive
authorEvan Prodromou <evan@status.net>
Mon, 25 Oct 2010 15:18:49 +0000 (11:18 -0400)
committerEvan Prodromou <evan@status.net>
Mon, 25 Oct 2010 15:18:49 +0000 (11:18 -0400)
classes/Notice_tag.php
classes/Profile.php
classes/Reply.php

index a5d0716a7136d6b00c073b0679f7afe273340eb0..6eada7022469f2c753b85771eb7a86682c67cc73 100644 (file)
@@ -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');
index a359a02d9e3dcf265f1d3c34f8ea86110c34ec2e..37d2c571f9391a265666aa4417bfcba3fb9fd766 100644 (file)
@@ -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';
index dc6296bda347b9f78e8e31fa856a5f1c7681670c..da8a4f685b52b83e014952228ef139024d86bf58 100644 (file)
@@ -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');