X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Flike.php;h=957fe5fc42ee107b9dafcb22c5c9b35a727567d6;hb=5af9596dde162b1b9819869e3d5129f571a1c503;hp=1f6a233f3dc26599f8a37152ea71f0fef276952b;hpb=5eaa5951a1b19b985017b5db20f3b1abf464a1ef;p=friendica.git diff --git a/mod/like.php b/mod/like.php old mode 100755 new mode 100644 index 1f6a233f3d..957fe5fc42 --- a/mod/like.php +++ b/mod/like.php @@ -1,32 +1,36 @@ argc > 1) ? notags(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'] : ''); - like_content_return(App::get_baseurl(), $return_path); + like_content_return(System::baseUrl(), $return_path); killme(); // NOTREACHED -// return; // NOTREACHED } @@ -34,15 +38,16 @@ function like_content(App $a) { // then redirect back to the calling page. If not, just quietly end function like_content_return($baseurl, $return_path) { - - if($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); } killme(); } -