Quote:
Originally Posted by MissKalunji
oh woops i thought it was by default...
How can i make it default for everyone?
|
If you are willing to do SQL queries you can enter this at the Maintenance > Execute SQL Query Page:
This will make the option active as default for new users
Code:
ALTER TABLE tableprefixuser ALTER sk_repnotif_options SET DEFAULT '1'
To activate it for all current user, use this
Code:
UPDATE tableprefixuser SET sk_repnotif_options = '1'
As always, replace
tableprefix with your tableprefix. Or skip it if you don't use any.
/SK