>>
Site Map
>>
Forums
>>
Operation
Forum module - topics in forum:
Operation - Get help on how each part of PHP-NUKE works
Default options fpr Your Info Option buttons
I remember finding this somewhere at Nukecops.com but their site has been down, I have done this before but forgot, and I am having a hard time finding it here. I would like to default the option buttons for the "Notify on Reply" and "Notify on PM" to be yes for every member that is created without having to do it manually in the users account for them.
Open includes/usercp_register.php and find
| Code: : |
| $notifyreply = ( isset($HTTP_POST_VARS['notifyreply']) ) ? ( ($HTTP_POST_VARS['notifyreply']) ? TRUE : 0 ) : 0; |
aamd replace it with:
| Code: : |
| $notifyreply = ( isset($HTTP_POST_VARS['notifyreply']) ) ? ( ($HTTP_POST_VARS['notifyreply']) ? TRUE : 0 ) : 1; |
That should do it for notify on reply at least for new users.
For notify on PM check out this post on nukecops. http://nukecops.com/postt8024.html
Thank you.