mirror of
https://github.com/friendica/friendica
synced 2024-11-10 06:22:53 +00:00
replaced forwardurl with forward_path
This commit is contained in:
parent
3edad1591e
commit
d51e931db7
1 changed files with 3 additions and 3 deletions
|
@ -173,9 +173,9 @@ function dfrn_request_post(App $a)
|
|||
Contact::updateAvatar($photo, local_user(), $r[0]["id"], true);
|
||||
}
|
||||
|
||||
$forwardurl = "contact/" . $r[0]['id'];
|
||||
$forward_path = "contact/" . $r[0]['id'];
|
||||
} else {
|
||||
$forwardurl = "contact";
|
||||
$forward_path = "contact";
|
||||
}
|
||||
|
||||
// Allow the blocked remote notification to complete
|
||||
|
@ -188,7 +188,7 @@ function dfrn_request_post(App $a)
|
|||
}
|
||||
|
||||
// (ignore reply, nothing we can do it failed)
|
||||
$a->internalRedirect($forwardurl);
|
||||
$a->internalRedirect($forward_path);
|
||||
return; // NOTREACHED
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue