Find the following code beginning at line 154:if M_AVATAR_URL <> "noavatar.gif" then
'##### Avatar #####
if (strMyAvatarLink + strMyAvatarTooltip) > 0 then
Response.Write getMyAvatar(MemberAvatar,strPMFromID,MemberName,MemberHomepage) & "<br />" & vbNewLine
else
Response.Write "<img src=""" & M_AVATAR_URL & """ width=""" & intAvatarWidth & """ height=""" & intAvatarHeight & """ border=""" & intAvatarBorder & """><br />"
end if
'########## Avatar ##########
end if
and replace it with the following:if strMAvatar <> "noavatar.gif" and strMAvatar <> "" then
Response.Write "<img src=""" & strMAvatar & """ width=""" & intAvatarWidth & """ height=""" & intAvatarHeight & """ border=""" & intAvatarBorder & """ /><br />"
end if