dbm, Diaspora, dfrn, and NotificationsManager moved to namespace. Includes and references in files updated.
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			179 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			179 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
use Friendica\Protocol\Diaspora;
 | 
						|
 | 
						|
function profile_update_run(&$argv, &$argc) {
 | 
						|
	if ($argc != 2) {
 | 
						|
		return;
 | 
						|
	}
 | 
						|
 | 
						|
	$uid = intval($argv[1]);
 | 
						|
 | 
						|
	Diaspora::send_profile($uid);
 | 
						|
}
 |