Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
BBC in Post
BurkeKnight
New
How do I set it to allow BBC in posting?
0
Best Answer
-
R_J Admin
Look at the config.php there might already be a line
$Configuration['Garden']['InputFormatter'] = 'Html'; // Html, BBCode, Markdown, Text
, otherwise you'll have to add it and certainly change "Html" to "BBCode".
But this will only change new comments, as the formatter for existing ones is stored in the database4
Answers
Look at the config.php there might already be a line
$Configuration['Garden']['InputFormatter'] = 'Html'; // Html, BBCode, Markdown, Text
, otherwise you'll have to add it and certainly change "Html" to "BBCode".But this will only change new comments, as the formatter for existing ones is stored in the database
Thank you for the help.