]> git.mxchange.org Git - friendica.git/blobdiff - mod/like.php
Catch HTTPExceptions in App::runFrontend()
[friendica.git] / mod / like.php
index a2617494de736d13729ac00ebc864a888d34f3ad..7ce7b1a1b912b9b1341db081e20aa6c67f766216 100644 (file)
@@ -3,8 +3,7 @@
 use Friendica\App;
 use Friendica\Core\System;
 use Friendica\Model\Item;
-
-require_once 'include/items.php';
+use Friendica\Util\Strings;
 
 function like_content(App $a) {
        if (!local_user() && !remote_user()) {
@@ -12,13 +11,13 @@ function like_content(App $a) {
        }
 
 
-       $verb = notags(trim($_GET['verb']));
+       $verb = Strings::escapeTags(trim($_GET['verb']));
 
        if (!$verb) {
                $verb = 'like';
        }
 
-       $item_id = (($a->argc > 1) ? notags(trim($a->argv[1])) : 0);
+       $item_id = (($a->argc > 1) ? Strings::escapeTags(trim($a->argv[1])) : 0);
 
        $r = Item::performLike($item_id, $verb);
        if (!$r) {
@@ -26,7 +25,7 @@ function like_content(App $a) {
        }
 
        // See if we've been passed a return path to redirect to
-       $return_path = ((x($_REQUEST,'return')) ? $_REQUEST['return'] : '');
+       $return_path = defaults($_REQUEST, 'return', '');
 
        like_content_return($a, $return_path);
        killme(); // NOTREACHED
@@ -45,7 +44,7 @@ function like_content_return(App $a, $return_path) {
                        $rand = "?$rand";
                }
 
-               $a->redirect($return_path . $rand);
+               $a->internalRedirect($return_path . $rand);
        }
 
        killme();