Tomorrow I'll update the hack with a version for default on and a version for default off.
For now, after installing this plugin just run this query in your admincp to set the default to No censor.
Code:
ALTER TABLE `forum` CHANGE `censor` `censor` SMALLINT( 3 ) UNSIGNED DEFAULT '0' NOT NULL;
Then run this query to update all the forums to disable the censor.
Code:
UPDATE `forum` SET `censor` = '0';
If you use a table prefix include it just before the `forum`
For example, I use a prefix of vb3_
So the second query for me looks like this
Code:
UPDATE `vb3_forum` SET `censor` = '0';
I'll update this hack in the morning and create two versions