Quote:
Originally Posted by sparky17
|
As i can see the avatar link is wrong as it has twice /...forum//forum/....
In my code there is no hand coded link. It takes the link by the native vB function:
PHP Code:
// Avatar
$member_avatarurl = fetch_avatar_url($member['userid']);
if (!$member_avatarurl)
{
$member_useravatar = 'memberindex/images/noavatar.png';
} else {
$member_useravatar = $vbulletin->options['bburl'] . '/' . $member_avatarurl[0];
}
At least tell me in which block or page the avatar does not appears.