diff options
author | Fabio Comuni <fabrix.xm@gmail.com> | 2011-07-06 12:10:00 +0200 |
---|---|---|
committer | Fabio Comuni <fabrix.xm@gmail.com> | 2011-07-06 12:10:00 +0200 |
commit | e7834e60f872f91954266a7bcc2b5adda3df8d00 (patch) | |
tree | 7285785b61685af145fb14954a0e345e7aa6f88b /view/field_checkbox.tpl | |
parent | 84d12c3e08ae4b6fe228ce881b0c1570175d1667 (diff) | |
download | volse-hubzilla-e7834e60f872f91954266a7bcc2b5adda3df8d00.tar.gz volse-hubzilla-e7834e60f872f91954266a7bcc2b5adda3df8d00.tar.bz2 volse-hubzilla-e7834e60f872f91954266a7bcc2b5adda3df8d00.zip |
Update settings page to use field templates.
Add tabs to switch user settings/plugin settings
Add new field templates 'custom', 'password', radio' and 'yesno'
Update main.js to support advanced fileds
Update duepuntozero, dispy e loozah themes
Diffstat (limited to 'view/field_checkbox.tpl')
-rw-r--r-- | view/field_checkbox.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/field_checkbox.tpl b/view/field_checkbox.tpl index 4a86da7ea..725df4cdf 100644 --- a/view/field_checkbox.tpl +++ b/view/field_checkbox.tpl @@ -1,6 +1,6 @@ <div class='field checkbox'> <label for='id_$field.0'>$field.1</label> - <input type="checkbox" name='$field.0' id='id_$field.0' {{ if $field.2 }}checked="true"{{ endif }}> + <input type="checkbox" name='$field.0' id='id_$field.0' value="1" {{ if $field.2 }}checked="true"{{ endif }}> <span class='field_help'>$field.3</span> </div> |