friendica/include/profile_update.php

13 lines
184 B
PHP
Raw Normal View History

2011-10-20 12:43:33 +00:00
<?php
require_once('include/diaspora.php');
function profile_update_run(&$argv, &$argc) {
if ($argc != 2) {
return;
}
$uid = intval($argv[1]);
Diaspora::send_profile($uid);
2011-10-21 10:33:34 +00:00
}