X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2Fredir.php;h=d8bb7643965963c7ebe195e04e564bcc22b4a947;hb=c0cc65304b06b027219a9f162deaab90fe2a0487;hp=ba7d02993f86526a9cd33cf180f719aca3025209;hpb=ed1b84fb603eafef6610a9fa1d343c0c5fd8c8ca;p=friendica.git diff --git a/include/redir.php b/include/redir.php index ba7d02993f..d8bb764396 100644 --- a/include/redir.php +++ b/include/redir.php @@ -4,7 +4,7 @@ function auto_redir(&$a, $contact_nick) { // prevent looping - if(intval($_REQUEST,'redir')) + if(x($_REQUEST,'redir') && intval($_REQUEST['redir'])) return; if((! $contact_nick) || ($contact_nick === $a->user['nickname'])) @@ -20,7 +20,7 @@ function auto_redir(&$a, $contact_nick) { // // We also have to make sure that I'm a legitimate contact--I'm not blocked or pending. - $baseurl = $a->get_baseurl(); + $baseurl = App::get_baseurl(); $domain_st = strpos($baseurl, "://"); if($domain_st === false) return; @@ -36,9 +36,9 @@ function auto_redir(&$a, $contact_nick) { dbesc($nurl) ); - if((!$r) || (! count($r)) || $r[0]['id'] == remote_user()) + if ((! dbm::is_result($r)) || $r[0]['id'] == remote_user()) { return; - + } $r = q("SELECT * FROM contact WHERE nick = '%s' AND network = '%s' AND uid = %d AND url LIKE '%%%s%%' LIMIT 1", @@ -48,8 +48,9 @@ function auto_redir(&$a, $contact_nick) { dbesc($baseurl) ); - if(! ($r && count($r))) + if (! dbm::is_result($r)) { return; + } $cid = $r[0]['id']; @@ -64,6 +65,12 @@ function auto_redir(&$a, $contact_nick) { $dfrn_id = '0:' . $orig_id; } + // ensure that we've got a valid ID. There may be some edge cases with forums and non-duplex mode + // that may have triggered some of the "went to {profile/intro} and got an RSS feed" issues + + if(strlen($dfrn_id) < 3) + return; + $sec = random_string(); q("INSERT INTO `profile_check` ( `uid`, `cid`, `dfrn_id`, `sec`, `expire`)