X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fprofile.php;h=51f9444121d20083f3908c30e63b82b7ab389822;hb=188829ed46be6d3c7a91380226e26e8292c327be;hp=68d73fba3829b50aab8d2fb33897788ee148dfe9;hpb=355c42cb309eb1313097411067ca999b699aa620;p=friendica.git diff --git a/mod/profile.php b/mod/profile.php index 68d73fba38..51f9444121 100644 --- a/mod/profile.php +++ b/mod/profile.php @@ -14,7 +14,7 @@ function profile_init(&$a) { else { $r = q("select nickname from user where blocked = 0 and account_expired = 0 and verified = 1 order by rand() limit 1"); if(count($r)) { - $which = $r[0]['nickname']; + goaway($a->get_baseurl() . '/profile/' . $r[0]['nickname']); } else { notice( t('Requested profile is not available.') . EOL );