6189f6c8e7
dbm, Diaspora, dfrn, and NotificationsManager moved to namespace. Includes and references in files updated.
13 lines
179 B
PHP
13 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);
|
|
}
|