a5d27d9ce7
Qvitter had implemented this as a "PublicAndExternal" stream, but I figured we might as well put it into the GNU social core.
12 lines
258 B
PHP
12 lines
258 B
PHP
<?php
|
|
|
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
|
|
|
class ThreadingNetworkPublicNoticeStream extends ThreadingNoticeStream
|
|
{
|
|
public function __construct(Profile $scoped=null)
|
|
{
|
|
parent::__construct(new NetworkPublicNoticeStream($scoped));
|
|
}
|
|
}
|