Quote:
Originally Posted by knertified
I had a problem with this plugin but it could be because I am running VB Advanced (not really sure)... In any case if someone didn't have an avatar I would see the red X. The URL is was pointing to was something like "http://www.myboard.com/http://www.myboard.com/images/misc/....". Anyways I modified code to fix it.
Maybe it will help something out.
I changed the 5 line up from the bottom
FROM:
PHP Code:
$navbaravatar = "<img src=\"" . $vbulletin->options[bburl] . "/$stylevar[imgdir_misc]/noavatar.gif\" alt=\"Your Avatar\" border=\"0\" />";
TO:
PHP Code:
$navbaravatar = "<img src=\"" . "$stylevar[imgdir_misc]/noavatar.gif\" alt=\"Your Avatar\" border=\"0\" />";
|
Hey this fixed my Problem, Thanks!