diff --git a/mod/dfrn_request.php b/mod/dfrn_request.php index 645f625c3c..141e5e5aca 100644 --- a/mod/dfrn_request.php +++ b/mod/dfrn_request.php @@ -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 } }