Ok to change this in Your Account module..I am sure people are going to ask.
open
modules/Your_Account/index.php
find:
Code:
if ($userinfo[user_avatar]) echo "<img src=\"modules/Forums/images/avatars/$userinfo[user_avatar]\" alt=\"\">
\n";
replace with:
Code:
if ( ereg( "(http)", $userinfo[user_avatar]) )
{
echo "<img src=\"$userinfo[user_avatar]\">
\n";
}
else
if ($userinfo[user_avatar])
{
echo "<img src=\"modules/Forums/images/avatars/$userinfo[user_avatar]\">
\n";
}
NOTE: both paths for avatar in the Forum admin / Configuration should be set to
modules/Forums/images/avatars
mikem