X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Ffollow.php;h=92557264023ba0d1d3737a8720e556f9a594cb2e;hb=48ffa880f099b19052f18e399bf6af50780a24b0;hp=830399ff5c51ae7903b239ed4fa80a07dcf9c840;hpb=8cc6e69705c40b942ff74f757d8db743c479646a;p=friendica.git diff --git a/mod/follow.php b/mod/follow.php index 830399ff5c..9255726402 100644 --- a/mod/follow.php +++ b/mod/follow.php @@ -82,9 +82,9 @@ function follow_post(&$a) { if(count($r)) { // update contact - if($r[0]['rel'] == REL_VIP) { + if($r[0]['rel'] == CONTACT_IS_FOLLOWER) { q("UPDATE `contact` SET `rel` = %d , `readonly` = 0 WHERE `id` = %d AND `uid` = %d LIMIT 1", - intval(REL_BUD), + intval(CONTACT_IS_FRIEND), intval($r[0]['id']), intval(local_user()) ); @@ -106,7 +106,7 @@ function follow_post(&$a) { dbesc($ret['nick']), dbesc($ret['photo']), dbesc($ret['network']), - intval(($ret['network'] === NETWORK_MAIL) ? REL_BUD : REL_FAN), + intval(($ret['network'] === NETWORK_MAIL) ? CONTACT_IS_FRIEND : CONTACT_IS_SHARING), intval($ret['priority']), intval($writeable) );