Do you mean for viewing posts in Threads? <br /> <br />If so, Threads doesn't show special characters by default because it converts the & to & <br /> <br />You can comment out the lines that do this in the various scripts (addpost.php, modifypost.php). <br /> <br />There are several instances in each of the scripts I listed too. <br /> <br />Ex. <br /> <br />
// -------------------------------------- <br />// Display certain & characters correctly <br />// $Subject = str_replace("&","&amp;",$Subject); <br />// $Body = str_replace("&","&amp;",$Body); <br /> <br />NOTE: Don't comment out the form variables though, leave them be... <br />
$FormSubject = $html -> form_encode($FormSubject); <br /> $FormBody = $html -> form_encode($FormBody); <br /> $FormSubject = str_replace("&","&amp;",$FormSubject); <br /> $FormBody = str_replace("&","&amp;",$FormBody); <br /> <br />DEMO <br />==== <br /> <br />
http://www.mameworld.info/ubbthreads/sho...part=1&vc=1