Thats right - you can edit the includes/class_bbcode.php file and find and replace as follows - this will be in the file TWICE:
MAKE A BACKUP OF THE FILES BEFORE EDITING!
Code:
if ($this->is_wysiwyg())
{
$replace = "<img src=\"$smilie[smiliepath]\" border=\"0\" alt=\"\" title=\"" . htmlspecialchars_uni($smilie['title']) . "\" smilieid=\"$smilie[smilieid]\" class=\"inlineimg\" />";
}
else
{
$replace = "<img src=\"$smilie[smiliepath]\" border=\"0\" alt=\"\" title=\"" . htmlspecialchars_uni($smilie['title']) . "\" class=\"inlineimg\" />";
}
and replace with
Code:
if ($this->is_wysiwyg())
{
$replace = "<img border=\"0\" alt=\"\" title=\"" . htmlspecialchars_uni($smilie['title']) . "\" smilieid=\"$smilie[smilieid]\" class=\"inlineimg\" src=\"$smilie[smiliepath]\" />";
}
else
{
$replace = "<img border=\"0\" alt=\"\" title=\"" . htmlspecialchars_uni($smilie['title']) . "\" class=\"inlineimg\" src=\"$smilie[smiliepath]\" />";
}