mirror of
https://github.com/friendica/friendica
synced 2024-11-15 20:09:27 +01:00
13 lines
184 B
PHP
13 lines
184 B
PHP
<?php
|
|
require_once('include/diaspora.php');
|
|
|
|
function profile_update_run(&$argv, &$argc) {
|
|
if ($argc != 2) {
|
|
return;
|
|
}
|
|
|
|
$uid = intval($argv[1]);
|
|
|
|
Diaspora::send_profile($uid);
|
|
}
|