]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Fixed bad query causing facebook_update to fail
authorZach Copley <zach@controlyourself.ca>
Mon, 26 Jan 2009 20:22:52 +0000 (12:22 -0800)
committerZach Copley <zach@controlyourself.ca>
Mon, 26 Jan 2009 20:22:52 +0000 (12:22 -0800)
lib/facebookutil.php

index 8454590d6c3c36c69e5cbec644e927bd90862304..beab51366081b90b77a9775bf0f3cef04a225bd3 100644 (file)
@@ -32,11 +32,12 @@ function getFacebookNotices($since)
         'FROM notice ' .
         'JOIN foreign_link ' .
         'WHERE notice.profile_id = foreign_link.user_id ' .
-        'AND foreign_link.service = 2 ' . 
-        'ORDER BY notice.created DESC';
+        'AND foreign_link.service = 2';
 
     // XXX: What should the limit be?
-    return Notice::getStreamDirect($qry, 0, 100, 0, 0, null, $since);
+    //static function getStreamDirect($qry, $offset, $limit, $since_id, $before_id, $order, $since) {
+    
+    return Notice::getStreamDirect($qry, 0, 1000, 0, 0, null, $since);
 }
 
 function getFacebook()