]> git.mxchange.org Git - friendica.git/blobdiff - mod/like.php
Merge pull request #6694 from Quix0r/rewrites/added-missing-var-init
[friendica.git] / mod / like.php
index 296e563bf466127fa77e86838f9d0de39497459f..7fc7b2b42c7ea2f0ca41b05e7d284923871f918b 100644 (file)
@@ -1,10 +1,8 @@
 <?php
 
 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 +10,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,10 +24,10 @@ 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
+       exit();
 }
 
 
@@ -47,6 +45,4 @@ function like_content_return(App $a, $return_path) {
 
                $a->internalRedirect($return_path . $rand);
        }
-
-       killme();
 }