Formatting user titles through a usergroup's default user title (Admin CP -> Users & Groups -> Groups -> usergroup -> Default User Title) and adding a Group Image results in a piece of code next to the Group Image.
Default User Title:
Not sure if the Usergroup Style might play a role in the issue with the default user title, so I'm including it just in case, along with the CSS used for it.
Username Style:
MyBB 1.6 has a usergroup configured in the same way as the MyBB 1.8 Beta 1 group. Both have this same problem. The bug was first found in MyBB 1.8 Beta 1 and then found in MyBB 1.6.13
Default User Title:
<span style="color: red; background: url(./images/rc599e.gif);">Network Administrator</span>
Not sure if the Usergroup Style might play a role in the issue with the default user title, so I'm including it just in case, along with the CSS used for it.
Username Style:
<span class="userglowNA"><b><i>{username}</i></b></span>
CSS Code.userglowNA
{
color: #F00;
text-shadow: 1px 0px 10px #AA0000;
background: url(./images/rc599e.gif);
}
.userglowNA:link .userglowNA:hover, .userglowNA:focus, .userglowNA:active
{
-webkit-stroke-width: 5.3px;
-webkit-stroke-color: #F00;
-webkit-fill-color: #F00;
text-shadow: 1px 0px 10px #FF0000;
-webkit-transition: width 0.3s;
transition: width 0.3s;
-moz-transition: width 0.3s;
-o-transition: width 0.3s;
}
.userglowNA a
{
-webkit-transition: all 0.3s ease-in;
transition: all 0.3s ease-in;
-moz-transition: all 0.3s ease-in;
-o-transition: all 0.3s ease-in;
text-decoration:none;
color:red;
}
A "Group Image" must be specified for the bug to appear, suggesting that the User Title (at least the Default User Title from the group settings in the ACP) and Group Image are directly related to the bug.MyBB 1.6 has a usergroup configured in the same way as the MyBB 1.8 Beta 1 group. Both have this same problem. The bug was first found in MyBB 1.8 Beta 1 and then found in MyBB 1.6.13