X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Flike.php;h=957fe5fc42ee107b9dafcb22c5c9b35a727567d6;hb=d0780ccf7dd3efb5337912dcf293617bea495d2a;hp=6918bd552111fbb190c25a61a3c4179f71530afa;hpb=12ab38f417edd10170020960bcbed19280f218e2;p=friendica.git diff --git a/mod/like.php b/mod/like.php index 6918bd5521..957fe5fc42 100644 --- a/mod/like.php +++ b/mod/like.php @@ -2,34 +2,35 @@ use Friendica\App; use Friendica\Core\System; +use Friendica\Model\Item; -require_once('include/security.php'); -require_once('include/bbcode.php'); -require_once('include/items.php'); -require_once('include/like.php'); +require_once 'include/security.php'; +require_once 'include/items.php'; function like_content(App $a) { - if(! local_user() && ! remote_user()) { + if (!local_user() && !remote_user()) { return false; } $verb = notags(trim($_GET['verb'])); - if(! $verb) + if (!$verb) { $verb = 'like'; + } $item_id = (($a->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(System::baseUrl(), $return_path); killme(); // NOTREACHED -// return; // NOTREACHED } @@ -37,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(); } -