Log in

View Full Version : Thread wont show avatar after upgrading to 3.5.3


HO3R
01-14-2006, 01:27 PM
Hi

When i upgraded my forum to version 3.5.3 i cant see any more the avatars of the members. When i go and see in the profile i can see the avatar but not in the thread in the postbit of the member.

When i go and see the code of the postbit i cant see anything wrong. Someone knows how to fix this??

The code in postbit:
<if condition="$show['avatar']">
<div class="smallfont">
&nbsp;<br /><a href="member.php?$session[sessionurl]u=$post[userid]"><img src="$avatarurl" alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a>
</div>
</if>

Greetz

Bratz-Designs
01-16-2006, 03:46 PM
Change this:
<if condition="$show['avatar']">
<div class="smallfont">
&nbsp;<br /><a href="member.php?$session[sessionurl]u=$post[userid]"><img src="$avatarurl" alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a>
</div>
</if>

To this:
<if condition="$show['avatar']">
<div class="smallfont">
&nbsp;<br /><a href="member.php?$session[sessionurl]u=$post[userid]"><img src=$post[avatarurl] alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a>
</div>
</if>

Bratzer