View Single Post
  #2  
Old 10-09-2009, 09:26 PM
BMR777 BMR777 is offline
Member
 
Join Date: Jan 2011
Posts: 1,122
Gender: Male
Credits: 16,744
BMR777 is on a distinguished road
Default RE: HTML instead of BBCodes

In admpost.php find all:

PHP Code:
$content secure($content); 
Replace with:

PHP Code:
$content mysql_real_escape_string($content); 
Replacing all of those will allow you to use HTML and BBCode. :)
Reply With Quote