X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Flike.php;h=7fc7b2b42c7ea2f0ca41b05e7d284923871f918b;hb=4af0119b7310e9731e60b11a14fd917580b95715;hp=9371c30743c45a94ba131fc463d3e3d70046f8ce;hpb=8bb44c8843e762c24047a79c4a4568d5ed3c747e;p=friendica.git diff --git a/mod/like.php b/mod/like.php index 9371c30743..7fc7b2b42c 100644 --- a/mod/like.php +++ b/mod/like.php @@ -1,12 +1,8 @@ argc > 1) ? notags(trim($a->argv[1])) : 0); + $item_id = (($a->argc > 1) ? Strings::escapeTags(trim($a->argv[1])) : 0); $r = Item::performLike($item_id, $verb); if (!$r) { @@ -28,17 +24,17 @@ function like_content(App $a) { } // See if we've been passed a return path to redirect to - $return_path = ((x($_REQUEST,'return')) ? $_REQUEST['return'] : ''); + $return_path = defaults($_REQUEST, 'return', ''); - like_content_return(System::baseUrl(), $return_path); - killme(); // NOTREACHED + like_content_return($a, $return_path); + exit(); } // Decide how to return. If we were called with a 'return' argument, // then redirect back to the calling page. If not, just quietly end -function like_content_return($baseurl, $return_path) { +function like_content_return(App $a, $return_path) { if ($return_path) { $rand = '_=' . time(); if (strpos($return_path, '?')) { @@ -47,8 +43,6 @@ function like_content_return($baseurl, $return_path) { $rand = "?$rand"; } - goaway($baseurl . "/" . $return_path . $rand); + $a->internalRedirect($return_path . $rand); } - - killme(); }