Quote:
Originally Posted by Curll
How do I turn on filtering by default to my registered users?
|
You can do this by using the following SQL instead of the line in the instructions:
Code:
ALTER TABLE user ADD usereplacementscensor TINYINT(1) NOT NULL DEFAULT '0' AFTER pmunread;
If you have already added this new column, you can set all the existing users to use the censorship by default using this:
Code:
ALTER TABLE user ALTER COLUMN usereplacementscensor SET DEFAULT '1';
UPDATE user SET usereplacementscensor=1;
This will set everyone to be using the censorship filter, and make it the default for all new users. Anyone that had it turned off will have to turn it off again if they want it that way.