Merge remote-tracking branch 'upstream/master'
[quix0rs-gnu-social.git] / lib / threadinggroupnoticestream.php
diff --git a/lib/threadinggroupnoticestream.php b/lib/threadinggroupnoticestream.php
new file mode 100644 (file)
index 0000000..b026ee4
--- /dev/null
@@ -0,0 +1,11 @@
+<?php
+
+if (!defined('GNUSOCIAL')) { exit(1); }
+
+class ThreadingGroupNoticeStream extends ThreadingNoticeStream
+{
+    function __construct($group, $profile)
+    {
+        parent::__construct(new GroupNoticeStream($group, $profile));
+    }
+}