isset($user-&gt;subscriptions_auto) ? $user-&gt;subscriptions_auto : true<br><br>Seems to work. <br><br><div><span class="gmail_quote">On 4/5/06, <b class="gmail_sendername">Dan Ziemecki</b> &lt;<a href="mailto:dan@ziemecki.com">
dan@ziemecki.com</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div style="direction: ltr;">I'm at work right now, so I can't give you the exact column, but the trick you're missing is that most site and user configurations are stored in a serialized array, not a separate field.&nbsp; Since the system tables have no idea what modules you'll be running, they store all the module variables in a single field.
<br><br>The code on the particular field is the right place to make your modification, but I may have given you the wrong way to do it.&nbsp; Unfortunately, other people have worked on the module and I don't completely understand all of what other people have done.&nbsp; And I was sleepy when I answered your email.&nbsp; This, however, I do know:&nbsp; the checkbox element has a 'checked' value you can set to any state you want.&nbsp; If you set the checkbox to 'checked', but only if the user has not set a value, you should be golden.
<br><br>Check this out:<br><br><a href="http://drupaldocs.org/api/4.6/function/form_checkbox" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">http://drupaldocs.org/api/4.6/function/form_checkbox</a>
<br><br>That 'checked' variable needs something that operates like this:
<br><br>if(isset(subscriptions_auto){$checked=subscriptions_auto;}else{$checked=strue;}<br>... or something like that.<br clear="all"></div><div style="direction: ltr;"><span class="sg"><br>-- <br>Dan Ziemecki<br>Philosopher. Curmudgeon. Nerd.
</span></div><div style="direction: ltr;"><span class="e" id="q_10a6a05487637861_2"><br><br><div><span class="gmail_quote">On 4/5/06, <b class="gmail_sendername">VJ Rao</b> &lt;<a href="mailto:cmsconsultant@gmail.com" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
cmsconsultant@gmail.com</a>&gt; 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 Dan,<br><br>I have tried that option. Problem with changing it to 'true' or '1' is<br>that the checkbox functionality gets messed up.<br><br>If an user unchecks autosubscribe in his user settings and<br>'saves'..the next time he clicks on edit profile it shows as checked .
<br>this is bound to confuse users.<br><br>The functionality Im looking for is , when a new user account is<br>created ..auto subscribe is checked by default. But ofcourse, since we<br>are giving him an option to uncheck it..it should remain unchecked
<br>once he unchecks it.<br><br>This is why I wanted to know which database table column stores this<br>information.<br><br>I am also confused what $user-&gt;subscriptions_auto offers since there<br>is no subscriptions_auto column anywhere .
<br><br>Regards,<br><br>V<br><br><br>On 4/4/06, Dan Ziemecki &lt;<a href="mailto:dan@ziemecki.com" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">dan@ziemecki.com</a>&gt; wrote:<br>&gt; I never made that a configurable option, but you can fix it in the code, if
<br>&gt; you want to.&nbsp;&nbsp;Find this line in 
subscriptions.module:<br>&gt;<br>&gt; return array(array('title' =&gt; t('Subscription settings'), 'data' =&gt;<br>&gt; form_checkbox(t('Automatically subscribe to threads in which you post.'),<br>&gt; 'subscriptions_auto', 1, isset($edit-&gt;subscriptions_auto) ?
<br>&gt; $edit-&gt;subscriptions_auto : $user-&gt;subscriptions_auto, t('Checking this box<br>&gt; allows you to be automatically subscribe to any thread you create or post a<br>&gt; comment to.'))));<br>&gt;<br>&gt; Look at this section:
<br>&gt; isset($edit-&gt;subscriptions_auto) ?<br>&gt; $edit-&gt;subscriptions_auto : $user-&gt;subscriptions_auto<br>&gt;<br>&gt; I think you can change ...<br>&gt;<br>&gt; : $user-&gt;subscriptions_auto<br>&gt;<br>&gt; to
<br>&gt;<br>&gt;&nbsp;&nbsp;: true<br>&gt;<br>&gt; That's someone else's edit, so I'm not sure what &quot;$user-&gt;subscriptions_auto&quot;<br>&gt; is supposed to offer, thut that whole block is the &quot;checked: value of the<br>

&gt; checkbox.<br>&gt;<br>&gt; I should probably add this as an option - I've had people ask about it<br>&gt; before.<br>&gt;<br>&gt; --<br>&gt; Dan Ziemecki<br>&gt;<br>&gt;<br>&gt;<br>&gt; On 4/4/06, VJ Rao &lt;<a href="mailto:cmsconsultant@gmail.com" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">

cmsconsultant@gmail.com</a>&gt; wrote:<br>&gt; &gt; Hi,<br>&gt; &gt;<br>&gt; &gt; Im using subscriptions module for 4.6<br>&gt; &gt;<br>&gt; &gt; How do I make 'auto subscribe' feature default? I couldnt find a way<br>&gt; &gt; through settings.
<br>&gt; &gt;<br>&gt; &gt; If I have to do this in code, which table/column stores this information?<br>&gt; &gt;<br>&gt; &gt; Thanks,<br>&gt; &gt;<br>&gt; &gt; V<br>&gt; &gt;<br>&gt;<br>&gt;<br></blockquote></div><br>

</span></div></blockquote></div><br>