I never made that a configurable option, but you can fix it in the code, if you want to. Find this line in subscriptions.module:<br><br>return array(array('title' => t('Subscription settings'), 'data' => form_checkbox(t('Automatically subscribe to threads in which you post.'), 'subscriptions_auto', 1, isset($edit->subscriptions_auto) ? $edit->subscriptions_auto : $user->subscriptions_auto, t('Checking this box allows you to be automatically subscribe to any thread you create or post a comment to.'))));
<br><br>Look at this section:<br>isset($edit->subscriptions_auto) ? $edit->subscriptions_auto : $user->subscriptions_auto<br><br>I think you can change ...<br><br>: $user->subscriptions_auto<br><br>to <br><br>
: true<br><br>That's someone else's edit, so I'm not sure what "$user->subscriptions_auto" is supposed to offer, thut that whole block is the "checked: value of the checkbox.<br><br>I should probably add this as an option - I've had people ask about it before.
<br clear="all"><br>-- <br>Dan Ziemecki<br> <br><br><div><span class="gmail_quote">On 4/4/06, <b class="gmail_sendername">VJ Rao</b> <<a href="mailto:cmsconsultant@gmail.com">cmsconsultant@gmail.com</a>> wrote:</span>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Hi,<br><br>Im using subscriptions module for 4.6<br><br>How do I make 'auto subscribe' feature default? I couldnt find a way
<br>through settings.<br><br>If I have to do this in code, which table/column stores this information?<br><br>Thanks,<br><br>V<br></blockquote></div><br>