X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fstarred.php;h=537f3920232b6bcf4befed19db4c83ae24a9a065;hb=3fc5c1ad840f98926319478a855dab3686a0ace3;hp=e75a09674082bfb432114371f9962302ba07bf6c;hpb=cfa68c52b9117616fa95a4639ad74e7d220d193d;p=friendica.git diff --git a/mod/starred.php b/mod/starred.php index e75a096740..537f392023 100644 --- a/mod/starred.php +++ b/mod/starred.php @@ -33,7 +33,7 @@ function starred_init(App $a) { Item::update(['starred' => $starred], ['id' => $message_id]); // See if we've been passed a return path to redirect to - $return_path = (x($_REQUEST,'return') ? $_REQUEST['return'] : ''); + $return_path = defaults($_REQUEST, 'return', ''); if ($return_path) { $rand = '_=' . time(); if (strpos($return_path, '?')) { @@ -42,7 +42,7 @@ function starred_init(App $a) { $rand = "?$rand"; } - goaway(System::baseUrl() . "/" . $return_path . $rand); + $a->internalRedirect($return_path . $rand); } // the json doesn't really matter, it will either be 0 or 1