MyBB Community Forums

Full Version: Avatar function ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Whhat do i need to edit in this function to call an avatar in mybb?

function getAvatar($image) {
if ($image != '')
{
return "./avatar.php?userid=".$image;
}
else
{
return ("./images/avatars/invalid_url.gif");
} 
}

Its ok i got it :

function getAvatar($image) {
    return $image;
}