3 require_once('include/security.php');
4 require_once('include/bbcode.php');
5 require_once('include/items.php');
6 require_once('include/like.php');
8 function like_content(App &$a) {
9 if(! local_user() && ! remote_user()) {
14 $verb = notags(trim($_GET['verb']));
19 $item_id = (($a->argc > 1) ? notags(trim($a->argv[1])) : 0);
21 $r = do_like($item_id, $verb);
24 // See if we've been passed a return path to redirect to
25 $return_path = ((x($_REQUEST,'return')) ? $_REQUEST['return'] : '');
27 like_content_return(App::get_baseurl(), $return_path);
28 killme(); // NOTREACHED
29 // return; // NOTREACHED
33 // Decide how to return. If we were called with a 'return' argument,
34 // then redirect back to the calling page. If not, just quietly end
36 function like_content_return($baseurl, $return_path) {
39 $rand = '_=' . time();
40 if(strpos($return_path, '?')) $rand = "&$rand";
41 else $rand = "?$rand";
43 goaway($baseurl . "/" . $return_path . $rand);