]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - classes/User.php
add LOW_PRIORITY and IGNORE extensions for INSERT
[quix0rs-gnu-social.git] / classes / User.php
index bbc33f72a016930b2d3f763317d920f2dc79e402..916524b8e8ac90ceef33992780a70e46e261a67f 100644 (file)
@@ -330,9 +330,12 @@ class User extends Memcached_DataObject
                  'FROM notice JOIN notice_inbox ON notice.id = notice_inbox.notice_id ' .
                  'WHERE notice_inbox.user_id = %d ';
 
+               # NOTE: we override ORDER
+               
                return Notice::getStream(sprintf($qry, $this->id),
                                                                 'user:notices_with_friends:' . $this->id,
-                                                                $offset, $limit, $since_id, $before_id);
+                                                                $offset, $limit, $since_id, $before_id,
+                                                                'ORDER BY notice_inbox.created DESC, notice_inbox.notice_id DESC ');
        }
        
        function blowFavesCache() {