]> git.mxchange.org Git - friendica.git/blobdiff - include/profile_update.php
Merge pull request #2190 from annando/1512-getload
[friendica.git] / include / profile_update.php
index 611b00819da3a161ca798b359c6bebac75434090..0fcf3617fbeb0d80c5923b4485c589ab0e27cefa 100644 (file)
@@ -7,12 +7,12 @@ require_once('include/queue_fn.php');
 function profile_change() {
 
        $a = get_app();
-       
+
        if(! local_user())
                return;
 
 //   $url = $a->get_baseurl() . '/profile/' . $a->user['nickname'];
-//   if($url && strlen(get_config('system','directory_submit_url')))
+//   if($url && strlen(get_config('system','directory')))
 //      proc_run('php',"include/directory.php","$url");
 
        $recips = q("SELECT `id`,`name`,`network`,`pubkey`,`notify` FROM `contact` WHERE `network` = '%s'
@@ -29,7 +29,7 @@ function profile_change() {
                WHERE `user`.`uid` = %d AND `profile`.`is-default` = 1 LIMIT 1",
                intval(local_user())
        );
-       
+
        if(! count($r))
                return;
        $profile = $r[0];