summaryrefslogtreecommitdiff
path: root/templates/edit_newsletter.tpl
diff options
context:
space:
mode:
authorChristian Fowler <spider@viovio.com>2005-12-29 18:46:39 +0000
committerChristian Fowler <spider@viovio.com>2005-12-29 18:46:39 +0000
commit54ab99d9ef3d0edb3b9527922a34296495d170db (patch)
tree6b1278f2e9cf468ce176308139ab9fd27ba5c1b6 /templates/edit_newsletter.tpl
parent4918af1a903bac5765cbf8709cfe2ce7f41ff082 (diff)
downloadnewsletters-54ab99d9ef3d0edb3b9527922a34296495d170db.tar.gz
newsletters-54ab99d9ef3d0edb3b9527922a34296495d170db.tar.bz2
newsletters-54ab99d9ef3d0edb3b9527922a34296495d170db.zip
clean up permissions, and creating of editions
Diffstat (limited to 'templates/edit_newsletter.tpl')
-rw-r--r--templates/edit_newsletter.tpl6
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>