2011-10-20 14:43:33 +02:00
|
|
|
<?php
|
2017-11-08 01:37:53 +01:00
|
|
|
use Friendica\Protocol\Diaspora;
|
2011-10-20 14:43:33 +02:00
|
|
|
|
2017-05-19 08:01:13 +02:00
|
|
|
function profile_update_run(&$argv, &$argc) {
|
|
|
|
if ($argc != 2) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$uid = intval($argv[1]);
|
|
|
|
|
|
|
|
Diaspora::send_profile($uid);
|
2011-10-21 12:33:34 +02:00
|
|
|
}
|