diff options
Diffstat (limited to 'templates/edit_newsletter.tpl')
| -rw-r--r-- | templates/edit_newsletter.tpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/edit_newsletter.tpl b/templates/edit_newsletter.tpl index 4fdad39..affdf5e 100644 --- a/templates/edit_newsletter.tpl +++ b/templates/edit_newsletter.tpl @@ -33,7 +33,7 @@ <div class="row"> {formlabel label="Users can Subscribe" for="allow_user_sub"} {forminput} - <input type="checkbox" name="allow_user_sub" id="allow_user_sub" {if $gContent->mInfo.allow_user_sub eq 'y'}checked="checked"{/if} /> + <input type="checkbox" name="allow_user_sub" id="allow_user_sub" {if !$gContent->isValid() || $gContent->mInfo.allow_user_sub eq 'y'}checked="checked"{/if} /> {formhelp note="Users can subscribe to this list. Disabling this options means that you have to manually add users to the list."} {/forminput} </div> @@ -41,7 +41,7 @@ <div class="row"> {formlabel label="Any e-mail Address" for="allow_any_sub"} {forminput} - <input type="checkbox" name="allow_any_sub" id="allow_any_sub" {if $gContent->mInfo.allow_any_sub eq 'y'}checked="checked"{/if} /> + <input type="checkbox" name="allow_any_sub" id="allow_any_sub" {if !$gContent->isValid() || $gContent->mInfo.allow_any_sub eq 'y'}checked="checked"{/if} /> {formhelp note="Users may subscribe using any email address."} {/forminput} </div> @@ -49,7 +49,7 @@ <div class="row"> {formlabel label="Append Un/Subscribe Instructions" for="unsub_msg"} {forminput} - <input type="checkbox" name="unsub_msg" id="unsub_msg" {if $gContent->mInfo.unsub_msg eq 'y'}checked="checked"{/if} /> + <input type="checkbox" name="unsub_msg" id="unsub_msg" {if !$gContent->isValid() || $gContent->mInfo.unsub_msg eq 'y'}checked="checked"{/if} /> {formhelp note="Append instructions on how to subscribe / unsubscribe to ever outgoing newsletter. This is only useful when users can un / subscribe to the list themselves."} {/forminput} </div> |
