summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlsces <lester@lsces.co.uk>2015-01-22 10:28:49 +0000
committerlsces <lester@lsces.co.uk>2015-01-22 10:28:49 +0000
commit02967df6990efd44d85b5564e682a4e2c17b04c9 (patch)
tree18380941eecdb6932e8c7ca5e6cfb8385ce930f9
parenta3bb5ef9eb80c2239762b3de2d9c53b6a624b2a9 (diff)
parentf21a05a98d1bab50b6c07ade20e9471393459e04 (diff)
downloadblogs-02967df6990efd44d85b5564e682a4e2c17b04c9.tar.gz
blogs-02967df6990efd44d85b5564e682a4e2c17b04c9.tar.bz2
blogs-02967df6990efd44d85b5564e682a4e2c17b04c9.zip
Merge
-rw-r--r--templates/edit_blog.tpl16
1 files changed, 8 insertions, 8 deletions
diff --git a/templates/edit_blog.tpl b/templates/edit_blog.tpl
index d65d54a..c6c3761 100644
--- a/templates/edit_blog.tpl
+++ b/templates/edit_blog.tpl
@@ -48,33 +48,33 @@
{* DEPRECATED - Slated for removal -wjames5
{if $gBitUser->hasPermission('p_blogs_create_is_public')}
<div class="form-group">
- <label class="checkbox">
+ {forminput label="checkbox"}
<input type="checkbox" name="is_public" id="is_public" {if $gContent->getField('is_public') eq 'y'}checked="checked"{/if} />Public
{formhelp note='Allow other user to post in this blog'}
- </label>
+ {/forminput}
</div>
{/if}
*}
<div class="form-group">
- <label class="checkbox">
+ {forminput label="checkbox"}
<input type="checkbox" name="use_title" id="use_title" {if !$gContent->isValid() || $gContent->getField('use_title') eq 'y'}checked="checked"{/if} />Use titles in blog posts
{formhelp note='If this is not selected, the time and date of when the post was created will be displayed instead of the post title.'}
- </label>
+ {/forminput}
</div>
<div class="form-group">
- <label class="checkbox">
+ {forminput label="checkbox"}
<input type="checkbox" name="use_find" id="use_find" {if !$gContent->isValid() || $gContent->getField('use_find') eq 'y'}checked="checked"{/if} />Allow search
{formhelp note='Allow users to search this blog for occurances of words.'}
- </label>
+ {/forminput}
</div>
<div class="form-group">
- <label class="checkbox">
+ {forminput label="checkbox"}
<input type="checkbox" name="allow_comments" id="allow_comments" {if !$gContent->isValid() || $gContent->getField('allow_comments') eq 'y'}checked="checked"{/if} />Allow comments
{formhelp note='Are other users allowed to add comments to posts made in this blog?'}
- </label>
+ {/forminput}
</div>
{include file="bitpackage:liberty/edit_services_inc.tpl" serviceFile="content_edit_mini_tpl"}