After a new friendica contact is added, the user is directed to the contact page of the new contact. (Instead of the remote profile)
This commit is contained in:
parent
23c4c39a1f
commit
2b182b2dcf
|
@ -183,7 +183,9 @@ function dfrn_request_post(&$a) {
|
||||||
require_once('include/group.php');
|
require_once('include/group.php');
|
||||||
group_add_member(local_user(),'',$r[0]['id'],$g[0]['def_gid']);
|
group_add_member(local_user(),'',$r[0]['id'],$g[0]['def_gid']);
|
||||||
}
|
}
|
||||||
}
|
$forwardurl = $a->get_baseurl()."/contacts/".$r[0]['id'];
|
||||||
|
} else
|
||||||
|
$forwardurl = $a->get_baseurl()."/contacts";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Allow the blocked remote notification to complete
|
* Allow the blocked remote notification to complete
|
||||||
|
@ -197,7 +199,8 @@ function dfrn_request_post(&$a) {
|
||||||
|
|
||||||
// (ignore reply, nothing we can do it failed)
|
// (ignore reply, nothing we can do it failed)
|
||||||
|
|
||||||
goaway(zrl($dfrn_url));
|
// Old: goaway(zrl($dfrn_url));
|
||||||
|
goaway($forwardurl);
|
||||||
return; // NOTREACHED
|
return; // NOTREACHED
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue