]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
used SQL standard LIMIT/OFFSET, because every database can understand that
authorBrenda Wallace <shiny@cpan.org>
Fri, 26 Jun 2009 10:13:41 +0000 (22:13 +1200)
committerBrenda Wallace <shiny@cpan.org>
Wed, 15 Jul 2009 08:17:01 +0000 (20:17 +1200)
lib/popularnoticesection.php

index e47c9b3855d22c22e65b2707d1830511ee7930f6..167a6ff8dfaf5699f4579caf57690fb6ab6bba0f 100644 (file)
@@ -74,11 +74,7 @@ class PopularNoticeSection extends NoticeSection
         $offset = 0;
         $limit  = NOTICES_PER_SECTION + 1;
 
-        if (common_config('db', 'type') == 'pgsql') {
-            $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset;
-        } else {
-            $qry .= ' LIMIT ' . $offset . ', ' . $limit;
-        }
+        $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset;
 
         $notice = Memcached_DataObject::cachedQuery('Notice',
                                                     sprintf($qry, common_config('popular', 'dropoff')),