]> 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:45:12 +0000 (20:45 +1200)
committerBrenda Wallace <shiny@cpan.org>
Fri, 28 Aug 2009 08:45:12 +0000 (20:45 +1200)
classes/User.php

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