X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Finboxnoticestream.php;h=5517cef1137b4bcfddb3033a59c0611efc5dbb9c;hb=2757bd8428888dc468634717ae3d6163e38fcee9;hp=09c3edb281d76420ba93e9044002f4669447939b;hpb=8d99a5f949b1addd83dd6d9a3ca9403e3f4a0ca9;p=quix0rs-gnu-social.git diff --git a/lib/inboxnoticestream.php b/lib/inboxnoticestream.php index 09c3edb281..5517cef113 100644 --- a/lib/inboxnoticestream.php +++ b/lib/inboxnoticestream.php @@ -20,7 +20,7 @@ * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . * - * @category Cache + * @category NoticeStream * @package StatusNet * @author Evan Prodromou * @copyright 2011 StatusNet, Inc. @@ -51,8 +51,11 @@ class InboxNoticeStream extends ScopingNoticeStream * * @param User $user User to get a stream for */ - function __construct($user, $profile = null) + function __construct($user, $profile = -1) { + if (is_int($profile) && $profile == -1) { + $profile = Profile::current(); + } // Note: we don't use CachingNoticeStream since RawInboxNoticeStream // uses Inbox::staticGet(), which is cached. parent::__construct(new RawInboxNoticeStream($user), $profile);