diff options
author | Evan Prodromou <evan@status.net> | 2010-10-25 11:18:56 -0400 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2010-10-25 11:18:56 -0400 |
commit | b60b9b4fa2863a398291706350b3f68f725f7687 (patch) | |
tree | 725541271809beec39c8248df9399288b6aefd95 /classes/Profile.php | |
parent | 75fcf1e081f1a8022094410a9f379a55753a139c (diff) | |
parent | aef88c7ceeb219c12d4ebce65b6f1fbccbc1458a (diff) |
Merge branch '0.9.x' into atompub
Diffstat (limited to 'classes/Profile.php')
-rw-r--r-- | classes/Profile.php | 2 |
1 files changed, 1 insertions, 1 deletions
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'; |