Quote:
Originally Posted by gwerzal
Is there any way of making this so it is turned on by default.
|
If you are willing to do SQL queries you can enter this at the Maintenance > Execute SQL Query Page:
Code:
ALTER TABLE user ALTER sk_repnotif_options SET DEFAULT '1'
This will make the option active as default for new users.
To activate it for
all current user, use this:
Code:
UPDATE user SET sk_repnotif_options = '1'
Don't forget to add in your table prefix as well.
As always, be careful and take backups before you mess with the database.
/SK