forked from GNUsocial/gnu-social
		
	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));
 | 
						|
    }
 | 
						|
}
 |