X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Flike.php;h=5ea30a3ffef985ba5d8cc27d4f091588f173341a;hb=a8b0aa8c8d97a2d28b357fca17a63f2930c6b640;hp=8d383b9abe4ffad8726a3596eec1f2119dcda0d4;hpb=3c97a6703cd5a743fc9339f52996bcb1eb436ef0;p=friendica.git diff --git a/mod/like.php b/mod/like.php old mode 100755 new mode 100644 index 8d383b9abe..5ea30a3ffe --- a/mod/like.php +++ b/mod/like.php @@ -1,48 +1,53 @@ argc > 1) ? notags(trim($a->argv[1])) : 0); + $item_id = (($a->argc > 1) ? Strings::escapeTags(trim($a->argv[1])) : 0); - $r = do_like($item_id, $verb); - if (!$r) return; + $r = Item::performLike($item_id, $verb); + if (!$r) { + return; + } // 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($a->get_baseurl(), $return_path); + like_content_return($a, $return_path); killme(); // NOTREACHED -// return; // NOTREACHED } // 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) { - - if($return_path) { +function like_content_return(App $a, $return_path) { + if ($return_path) { $rand = '_=' . time(); - if(strpos($return_path, '?')) $rand = "&$rand"; - else $rand = "?$rand"; + if (strpos($return_path, '?')) { + $rand = "&$rand"; + } else { + $rand = "?$rand"; + } - goaway($baseurl . "/" . $return_path . $rand); + $a->internalRedirect($return_path . $rand); } killme(); } -