]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/conversationnoticestream.php
Managed_DataObject now has listGet for all classes
[quix0rs-gnu-social.git] / lib / conversationnoticestream.php
index c43b5deb24a3bd12d5d26da534a21036bcc17ac3..1d823760d7cab592b3b4f54f98b4d729f1e3737a 100644 (file)
@@ -78,7 +78,7 @@ class RawConversationNoticeStream extends NoticeStream
 
     function getNotices($offset, $limit, $sinceId = null, $maxId = null)
     {
-        $all = Memcached_DataObject::listGet('Notice', 'conversation', array($this->id));
+        $all = Notice::listGet('conversation', array($this->id));
         $notices = $all[$this->id];
         // Re-order in reverse-chron
         usort($notices, array('RawConversationNoticeStream', '_reverseChron'));