X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Flike.php;h=957fe5fc42ee107b9dafcb22c5c9b35a727567d6;hb=e0b33b36a21d7803353692372d7ceb90683d8888;hp=7932fc149c7664b7484a314cdaf44a32c5160edd;hpb=0cd241bcbe762e38e2eba0c58800eb60a2240e36;p=friendica.git diff --git a/mod/like.php b/mod/like.php old mode 100755 new mode 100644 index 7932fc149c..957fe5fc42 --- a/mod/like.php +++ b/mod/like.php @@ -1,25 +1,27 @@ argc > 1) ? notags(trim($a->argv[1])) : 0); - $r = do_like($item_id, $verb); + $r = Item::performLike($item_id, $verb); if (!$r) { return; } @@ -27,9 +29,8 @@ function like_content(App $a) { // 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 } @@ -37,7 +38,6 @@ 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) { $rand = '_=' . time(); if (strpos($return_path, '?')) { @@ -51,4 +51,3 @@ function like_content_return($baseurl, $return_path) { killme(); } -