Small revision and my final code...<br /><br />this removes that "Re: " from the subject replies.. and also get rid of the the special charactors such as Quotes and Apostraphies that may mess with html.<br /><br />in ubbthreads.php, find...<br /><br />
<br /> if ($Poster) {<br /> $append = "";<br /> if (strlen($Subject) > 26) {<br /> $append = "...";<br /> }<br /> $Subject = substr($Subject,0,26);<br /> $Subject .= $append;<br /> if (!$Icon) { $Icon = "blank.gif"; }<br /><br /><br />replace with...<br />
<br /> if ($Poster) {<br /> $append = "";<br /> $Subject = str_replace("Re: ", "", $Subject);<br /><br /> $Subject_full = $Subject;<br /> $Subject_full = strip_tags($Subject_full); <br /> $Subject_full = htmlspecialchars($Subject_full); <br /><br /> if (strlen($Subject) > 26) {<br /> $append = "...";<br /> }<br /> $Subject = substr($Subject,0,26);<br /> $Subject .= $append;<br /> if (!$Icon) { $Icon = "blank.gif"; }<br /><br /><br /><br />and just under that line, at "$lastpost =", replace...<br />
<br />> $Subject</a>";<br />
<br /><br />with...<br />
<br />title=\"$Subject_full\" alt=\"$Subject_full\">$Subject</a>";<br />