]> git.mxchange.org Git - friendica.git/commitdiff
replaced forwardurl with forward_path
authorPhilipp Holzer <admin@philipp.info>
Fri, 19 Oct 2018 21:56:54 +0000 (23:56 +0200)
committerPhilipp Holzer <admin@philipp.info>
Mon, 22 Oct 2018 20:13:37 +0000 (22:13 +0200)
mod/dfrn_request.php

index 645f625c3c6e85e7f1e0228cd67887ad8350de10..141e5e5aca64e3d3af6aea352d160782dd279151 100644 (file)
@@ -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
                        }
                }