]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
getGroups was not handling the case where limit=null correctly
authorCraig Andrews <candrews@integralblue.com>
Mon, 16 Nov 2009 16:22:45 +0000 (11:22 -0500)
committerCraig Andrews <candrews@integralblue.com>
Mon, 16 Nov 2009 16:22:45 +0000 (11:22 -0500)
classes/User.php

index 9f1ee53f48c8e3e0db868b219527d5b469b2d972..4ddf949166f2ee6e76ed647b9bd3f43a1776e3e7 100644 (file)
@@ -577,11 +577,13 @@ class User extends Memcached_DataObject
           'WHERE group_member.profile_id = %d ' .
           'ORDER BY group_member.created DESC ';
 
-        if ($offset) {
-            if (common_config('db','type') == 'pgsql') {
-                $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset;
-            } else {
-                $qry .= ' LIMIT ' . $offset . ', ' . $limit;
+        if ($offset>0 && !is_null($limit)) {
+            if ($offset) {
+                if (common_config('db','type') == 'pgsql') {
+                    $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset;
+                } else {
+                    $qry .= ' LIMIT ' . $offset . ', ' . $limit;
+                }
             }
         }