getGroups was not handling the case where limit=null correctly

This commit is contained in:
Craig Andrews 2009-11-16 11:22:45 -05:00
parent 73b4d770a2
commit 7177585630

View File

@ -577,6 +577,7 @@ class User extends Memcached_DataObject
'WHERE group_member.profile_id = %d ' . 'WHERE group_member.profile_id = %d ' .
'ORDER BY group_member.created DESC '; 'ORDER BY group_member.created DESC ';
if ($offset>0 && !is_null($limit)) {
if ($offset) { if ($offset) {
if (common_config('db','type') == 'pgsql') { if (common_config('db','type') == 'pgsql') {
$qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset; $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset;
@ -584,6 +585,7 @@ class User extends Memcached_DataObject
$qry .= ' LIMIT ' . $offset . ', ' . $limit; $qry .= ' LIMIT ' . $offset . ', ' . $limit;
} }
} }
}
$groups = new User_group(); $groups = new User_group();