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);
|
Contact::updateAvatar($photo, local_user(), $r[0]["id"], true);
|
||||||
}
|
}
|
||||||
|
|
||||||
$forwardurl = "contact/" . $r[0]['id'];
|
$forward_path = "contact/" . $r[0]['id'];
|
||||||
} else {
|
} else {
|
||||||
$forwardurl = "contact";
|
$forward_path = "contact";
|
||||||
}
|
}
|
||||||
|
|
||||||
// Allow the blocked remote notification to complete
|
// 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)
|
// (ignore reply, nothing we can do it failed)
|
||||||
$a->internalRedirect($forwardurl);
|
$a->internalRedirect($forward_path);
|
||||||
return; // NOTREACHED
|
return; // NOTREACHED
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue