mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-08 00:04:27 +02:00
12 lines
184 B
PHP
12 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);
|
|
}
|