MyBB Community Forums

Full Version: User Profile Problem
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
The good one has a normal "alt" text when you hover over the image
<!-- start: member_profile_groupimage -->
<img src="http://i32.photobucket.com/albums/d4/connormah/tncstuffy1.png" alt="Support the GNW2 Today!" title="Support the GNW2 Today!" /><br />
<!-- end: member_profile_groupimage -->

The bad one does not have proper "alt" text.
<!-- start: member_profile_groupimage -->
<img src="http://i32.photobucket.com/albums/d4/connormah/tncstuffy1.png" alt="<b><span style="color: #33CC99;">TNC Stuffy</span></b>" title="<b><span style="color: #33CC99;">TNC Stuffy</span></b>" /><br />
<!-- end: member_profile_groupimage -->
It also has colored bold text above the image and some extra HTML that is generated by the member_profile_groupimage module. Certainly seems to be in the member_profile_groupimage module.
Here is what the member_profile_groupimage should be:
<img src="{$displaygroup['image']}" alt="{$usertitle}" title="{$usertitle}" /><br />

There is a problem with the variable usertitle

look at the generated HTML just above start: member_profile_groupimage and you will see the same HTML that was generated by usertitle. Try looking at that member's profile and see if there is something there that should not be there.
Pages: 1 2