From: Mikael Nordfeldth Date: Mon, 12 May 2014 09:07:00 +0000 (+0200) Subject: Bad variable reference in ProfileNoticeStream X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=8f8a7dbde054667462cd88560fa7a32df13e7712;p=quix0rs-gnu-social.git Bad variable reference in ProfileNoticeStream --- 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); } }