]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
getNotices() takes optional last 2 params
authorEvan Prodromou <evan@status.net>
Mon, 11 Apr 2011 00:16:14 +0000 (20:16 -0400)
committerEvan Prodromou <evan@status.net>
Mon, 11 Apr 2011 00:16:14 +0000 (20:16 -0400)
lib/filteringnoticestream.php
lib/noticestream.php

index 96b9432fc152bacddb80ad4f42d3e246dd9bbc88..f41221107418857b2f4fddd40e4f45b909ac3152 100644 (file)
@@ -56,7 +56,7 @@ abstract class FilteringNoticeStream extends NoticeStream
 
     abstract function filter($notice);
 
-    function getNotices($offset, $limit, $sinceId, $maxId)
+    function getNotices($offset, $limit, $sinceId=null, $maxId=null)
     {
         // "offset" is virtual; we have to get a lot
         $total = $offset + $limit;
index 025138be4ded80db592be3f9e46ed0138b92d9a8..be28aa61867526f56214ca9ed7f9f6b9534e20a7 100644 (file)
@@ -48,7 +48,7 @@ abstract class NoticeStream
 {
     abstract function getNoticeIds($offset, $limit, $since_id, $max_id);
 
-    function getNotices($offset, $limit, $sinceId, $maxId)
+    function getNotices($offset, $limit, $sinceId = null, $maxId = null)
     {
         $ids = $this->getNoticeIds($offset, $limit, $sinceId, $maxId);