]> git.mxchange.org Git - friendica.git/blob - include/profile_update.php
Merge pull request #3475 from annando/bugfix-profile-change
[friendica.git] / include / profile_update.php
1 <?php
2 require_once('include/diaspora.php');
3
4 function profile_update_run(&$argv, &$argc) {
5         if ($argc != 2) {
6                 return;
7         }
8
9         $uid = intval($argv[1]);
10
11         Diaspora::send_profile($uid);
12 }