To remove the HR you will have to edit ubbt.inc.php <br /> <br />Look for: <br />
$Body = str_replace("[{$ubbt_lang['TEXT_QUOTE']}]","</font><blockquote><font class=\"small\">{$ubbt_lang['IN_REPLY']}:</font><hr /><br />",$Body); <br /> <br />And replace it with: <br />
$Body = str_replace("[{$ubbt_lang['TEXT_QUOTE']}]","</font><blockquote><font class=\"small\">{$ubbt_lang['IN_REPLY']}:</font><br />",$Body); <br /> <br />Next look for: <br />
$Body = preg_replace("/<\/font><blockquote><font class=\"small\">.*?:<\/font><hr \/><br \/>/","[{$ubbt_lang['TEXT_QUOTE']}]",$Body); <br /> <br />And replace it with: <br />
$Body = preg_replace("/<\/font><blockquote><font class=\"small\">.*?:<\/font><br \/>/","[{$ubbt_lang['TEXT_QUOTE']}]",$Body); <br /> <br />That
should do it. I haven't tested it though.