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:
Michael Vogel 2014-09-01 16:55:16 +02:00
parent 23c4c39a1f
commit 2b182b2dcf
1 changed files with 5 additions and 2 deletions

View File

@ -183,7 +183,9 @@ function dfrn_request_post(&$a) {
require_once('include/group.php');
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
@ -197,7 +199,8 @@ function dfrn_request_post(&$a) {
// (ignore reply, nothing we can do it failed)
goaway(zrl($dfrn_url));
// Old: goaway(zrl($dfrn_url));
goaway($forwardurl);
return; // NOTREACHED
}