diff options
Diffstat (limited to 'mod/dfrn_confirm.php')
-rw-r--r-- | mod/dfrn_confirm.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/mod/dfrn_confirm.php b/mod/dfrn_confirm.php index f1a744689..3a534fb6f 100644 --- a/mod/dfrn_confirm.php +++ b/mod/dfrn_confirm.php @@ -127,9 +127,9 @@ function dfrn_confirm_post(&$a) { $thumb = $a->get_baseurl() . '/images/default-profile-sm.jpg'; } - $new_relation = DIRECTION_OUT; - if(($relation == DIRECTION_IN) || ($duplex)) - $new_relation = DIRECTION_BOTH; + $new_relation = REL_FAN; + if(($relation == REL_VIP) || ($duplex)) + $new_relation = REL_BUD; $r = q("UPDATE `contact` SET `photo` = '%s', @@ -362,9 +362,9 @@ function dfrn_confirm_post(&$a) { $thumb = $a->get_baseurl() . '/images/default-profile-sm.jpg'; } - $new_relation = DIRECTION_IN; - if(($relation == DIRECTION_OUT) || ($duplex)) - $new_relation = DIRECTION_BOTH; + $new_relation = REL_VIP; + if(($relation == REL_FAN) || ($duplex)) + $new_relation = REL_BUD; $r = q("UPDATE `contact` SET `photo` = '%s', `thumb` = '%s', |