]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
used standard SQL that mysql and pgsql both like
authorBrenda Wallace <shiny@cpan.org>
Fri, 28 Aug 2009 08:44:11 +0000 (20:44 +1200)
committerBrenda Wallace <shiny@cpan.org>
Fri, 28 Aug 2009 08:44:11 +0000 (20:44 +1200)
classes/User.php

index 618e2d6aac11585e9cc092d94fef47f60b11b7d1..060cd80056dd8df6b8103430aafb84fcf625e264 100644 (file)
@@ -627,11 +627,7 @@ class User extends Memcached_DataObject
           'ORDER BY subscription.created DESC ';
 
         if ($offset) {
-            if (common_config('db','type') == 'pgsql') {
-                $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset;
-            } else {
-                $qry .= ' LIMIT ' . $offset . ', ' . $limit;
-            }
+            $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset;
         }
 
         $profile = new Profile();