X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Flike.php;h=296e563bf466127fa77e86838f9d0de39497459f;hb=f2ca3e5be44192c486e8e3af2a993e065ad40a7d;hp=957fe5fc42ee107b9dafcb22c5c9b35a727567d6;hpb=c845415a99ebc348103815a7b2c55b15c75cdd24;p=friendica.git diff --git a/mod/like.php b/mod/like.php index 957fe5fc42..296e563bf4 100644 --- a/mod/like.php +++ b/mod/like.php @@ -4,7 +4,6 @@ use Friendica\App; use Friendica\Core\System; use Friendica\Model\Item; -require_once 'include/security.php'; require_once 'include/items.php'; function like_content(App $a) { @@ -29,7 +28,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'] : ''); - like_content_return(System::baseUrl(), $return_path); + like_content_return($a, $return_path); killme(); // NOTREACHED } @@ -37,7 +36,7 @@ function like_content(App $a) { // Decide how to return. If we were called with a 'return' argument, // then redirect back to the calling page. If not, just quietly end -function like_content_return($baseurl, $return_path) { +function like_content_return(App $a, $return_path) { if ($return_path) { $rand = '_=' . time(); if (strpos($return_path, '?')) { @@ -46,7 +45,7 @@ function like_content_return($baseurl, $return_path) { $rand = "?$rand"; } - goaway($baseurl . "/" . $return_path . $rand); + $a->internalRedirect($return_path . $rand); } killme();