From: Brenda Wallace Date: Fri, 28 Aug 2009 08:44:11 +0000 (+1200) Subject: used standard SQL that mysql and pgsql both like X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b9ea2bf1bc96629c91bfb41d665e5a6954fa9b06;p=quix0rs-gnu-social.git used standard SQL that mysql and pgsql both like --- diff --git a/classes/User.php b/classes/User.php index 618e2d6aac..060cd80056 100644 --- a/classes/User.php +++ b/classes/User.php @@ -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();