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