From: friendica Date: Wed, 11 Apr 2012 03:09:51 +0000 (-0700) Subject: profile redir - goto correct profile page even if contact blocked, you just can't... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=0fa932853c76d8aca9fecf125d4c2d6816fb1a4a;p=friendica.git profile redir - goto correct profile page even if contact blocked, you just can't do anything. --- diff --git a/mod/dfrn_poll.php b/mod/dfrn_poll.php index 5c27889831..436727a78f 100644 --- a/mod/dfrn_poll.php +++ b/mod/dfrn_poll.php @@ -428,11 +428,13 @@ function dfrn_poll_content(&$a) { break; // NOTREACHED } + $nickname = $a->argv[1]; + $r = q("SELECT `contact`.*, `user`.`username`, `user`.`nickname` FROM `contact` LEFT JOIN `user` ON `contact`.`uid` = `user`.`uid` WHERE `contact`.`blocked` = 0 AND `contact`.`pending` = 0 AND `user`.`nickname` = '%s' $sql_extra LIMIT 1", - dbesc($a->argv[1]) + dbesc($nickname) ); if(count($r)) { @@ -482,7 +484,7 @@ function dfrn_poll_content(&$a) { )); } - $profile = $r[0]['nickname']; + $profile = ((count($r) && $r[0]['nickname']) ? $r[0]['nickname'] : $nickname); switch($destination_url) { case 'profile':