From 8f8a7dbde054667462cd88560fa7a32df13e7712 Mon Sep 17 00:00:00 2001 From: Mikael Nordfeldth Date: Mon, 12 May 2014 11:07:00 +0200 Subject: [PATCH] Bad variable reference in ProfileNoticeStream --- lib/profilenoticestream.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/profilenoticestream.php b/lib/profilenoticestream.php index e299fccaf4..ac18e1c8cd 100644 --- a/lib/profilenoticestream.php +++ b/lib/profilenoticestream.php @@ -62,7 +62,7 @@ class ProfileNoticeStream extends ScopingNoticeStream $userProfile); } - function getNoticeIds($offset, $limit, $sinceId = null, $maxId = null) + function getNoticeIds($offset, $limit, $since_id=null, $max_id=null) { if ($this->impossibleStream()) { return array(); @@ -71,12 +71,12 @@ class ProfileNoticeStream extends ScopingNoticeStream } } - function getNotices($offset, $limit, $sinceId = null, $maxId = null) + function getNotices($offset, $limit, $since_id=null, $max_id=null) { if ($this->impossibleStream()) { return new ArrayWrapper(array()); } else { - return parent::getNotices($offset, $limit, $sinceId, $maxId); + return parent::getNotices($offset, $limit, $since_id, $max_id); } }