]> git.mxchange.org Git - friendica.git/blobdiff - mod/starred.php
Catch HTTPExceptions in App::runFrontend()
[friendica.git] / mod / starred.php
index 9b46b522bb9df752a78963da88b4427ea787a626..537f3920232b6bcf4befed19db4c83ae24a9a065 100644 (file)
@@ -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, '?')) {