12 lines
240 B
PHP
12 lines
240 B
PHP
<?php
|
|
|
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
|
|
|
class ThreadingGroupNoticeStream extends ThreadingNoticeStream
|
|
{
|
|
function __construct($group, $profile)
|
|
{
|
|
parent::__construct(new GroupNoticeStream($group, $profile));
|
|
}
|
|
}
|