123456789101112131415 |
- <?php
- if (!defined('GNUSOCIAL')) { exit(1); }
- class ThreadingGroupNoticeStream extends ThreadingNoticeStream
- {
- public $widgetOpts;
- public $scoped;
- function __construct($group, Profile $scoped=null)
- {
- parent::__construct(new GroupNoticeStream($group, $scoped));
- }
- }
|