diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-07-26 20:30:52 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-07-26 20:30:52 -0700 |
commit | 8c1adbefe39e16823bf101f5e063f966f9ec8aa3 (patch) | |
tree | bee73723280a97b854fcd51d98dbb750f21ac113 | |
parent | 7a6665b5cfb35daf3cb6ad13db00a19e89f8c8b8 (diff) | |
download | volse-hubzilla-8c1adbefe39e16823bf101f5e063f966f9ec8aa3.tar.gz volse-hubzilla-8c1adbefe39e16823bf101f5e063f966f9ec8aa3.tar.bz2 volse-hubzilla-8c1adbefe39e16823bf101f5e063f966f9ec8aa3.zip |
redirect to contact editor after introduction approval
-rw-r--r-- | mod/dfrn_confirm.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mod/dfrn_confirm.php b/mod/dfrn_confirm.php index 1a3947d97..3be206c63 100644 --- a/mod/dfrn_confirm.php +++ b/mod/dfrn_confirm.php @@ -370,5 +370,6 @@ function dfrn_confirm_post(&$a) { $_SESSION['sysmsg'] .= "Unable to set contact photo info." . EOL; } - return; + goaway($a->get_baseurl() . '/contacts/' . intval($contact_id)); + return; //NOTREACHED } |