|
|
Administrator
|
Posts: 1199
Join Date: Mar 2005
|
|
Look in vtopic.php for the 2nd instance of this code: Code:
if (!in_array($f, $allowhtmlforums))
$message = format_html($message);
Replace it with this code:
Code:
if ($author_id != 1)
$message = format_html($message); This is the quickest fix to show html tags only posted by the admin. The fix however will not work for topic preview (like when you post the video and select preview topic/reply, it won't be shown). For this you'll need a few more modifications.
|