diff options
Diffstat (limited to 'classes/User.php')
-rw-r--r-- | classes/User.php | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/classes/User.php b/classes/User.php index 59451258e..08a166d5a 100644 --- a/classes/User.php +++ b/classes/User.php @@ -406,13 +406,22 @@ class User extends Memcached_DataObject return Notice::getStreamByIds($ids); } + function getTaggedNotices($tag, $offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0, $since=null) { + $profile = $this->getProfile(); + if (!$profile) { + return null; + } else { + return $profile->getTaggedNotices($tag, $offset, $limit, $since_id, $before_id, $since); + } + } + function getNotices($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0, $since=null) { $profile = $this->getProfile(); if (!$profile) { return null; } else { - return $profile->getNotices($offset, $limit, $since_id, $before_id); + return $profile->getNotices($offset, $limit, $since_id, $before_id, $since); } } |