4 use Friendica\Core\System;
5 use Friendica\Model\Item;
7 require_once 'include/security.php';
8 require_once 'include/items.php';
10 function like_content(App $a) {
11 if (!local_user() && !remote_user()) {
16 $verb = notags(trim($_GET['verb']));
22 $item_id = (($a->argc > 1) ? notags(trim($a->argv[1])) : 0);
24 $r = Item::performLike($item_id, $verb);
29 // See if we've been passed a return path to redirect to
30 $return_path = ((x($_REQUEST,'return')) ? $_REQUEST['return'] : '');
32 like_content_return(System::baseUrl(), $return_path);
33 killme(); // NOTREACHED
37 // Decide how to return. If we were called with a 'return' argument,
38 // then redirect back to the calling page. If not, just quietly end
40 function like_content_return($baseurl, $return_path) {
42 $rand = '_=' . time();
43 if (strpos($return_path, '?')) {
49 goaway($baseurl . "/" . $return_path . $rand);