MyBB Community Forums

Full Version: [Solved]Couple of questions about sidebox plugin.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Plugin in Question: http://mods.mybb.com/view/ajax-shoutbox-...compatible.

Everyone's username has '<' '>' around them, can they be removed? I've looked in the plugin file.
open ajaxshoutbox.php in a code editor (eg. notepad++) and remove &lt AND &gt from below code (around line 128)

echo "<tr><td class=\"trow".$row."\" onMouseOver=\"javascript:sb_posttime_show('Posted on: ".$date." at ".$time.$ip."');\" onMouseOut=\"javascript:sb_posttime_hide();\" style=\"text-align: left;\"><small>&lt;<a href=\"".$mybb->settings['bburl']."/member.php?action=profile&uid=".$post['uid']."\" target=\"_new\">".$usernamewithstyle."</a>&gt;<br />- ".$message.$adminopt."</small></td></tr>\r\n";

Brilliant, thanks a lot.