]> git.mxchange.org Git - friendica.git/blobdiff - mod/starred.php
Catch HTTPExceptions in App::runFrontend()
[friendica.git] / mod / starred.php
index 443308c27729962b50ce41554527e15f53820672..537f3920232b6bcf4befed19db4c83ae24a9a065 100644 (file)
@@ -4,7 +4,7 @@
  */
 use Friendica\App;
 use Friendica\Core\System;
-use Friendica\Database\DBM;
+use Friendica\Database\DBA;
 use Friendica\Model\Item;
 
 function starred_init(App $a) {
@@ -22,7 +22,7 @@ function starred_init(App $a) {
        }
 
        $item = Item::selectFirstForUser(local_user(), ['starred'], ['uid' => local_user(), 'id' => $message_id]);
-       if (!DBM::is_result($item)) {
+       if (!DBA::isResult($item)) {
                killme();
        }
 
@@ -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