XF 2.2 Is code now allowed in a users post?

When it says code, it means how it's formatting the display of the item, and nothing more (or less). For instance, if I wanted to give another user an example of how to do a Mysql dump, I would surround it with "code" tags to it formats the same way it would in an ssh shell:

Code:
mysqldump --opt -utheusername -pthepassword thedatabase | gzip -c > thedatabase.sql.gz

With those code tags, I can prevent bbcodes from rendering. So if I wanted to let a user know how to use the bold bbcode, I can do this:

Code:
this [b]is an example[/b]
 
Back
Top Bottom