]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/frio/templates/field_checkbox.tpl
Merge pull request #4593 from annando/fix-ostatus
[friendica.git] / view / theme / frio / templates / field_checkbox.tpl
index 112208c1da128448987a986731eb07475a30e7c9..787a82ebdcd14f7d3bbf7c3cb7973070b76148cf 100644 (file)
@@ -1,8 +1,9 @@
 
-       <div class="field checkbox" id='div_id_{{$field.0}}'>
-                       <input type="checkbox" name='{{$field.0}}' id='id_{{$field.0}}' value="1" {{if $field.2}}checked="checked"{{/if}}>
+       <div class="field checkbox" id="div_id_{{$field.0}}">
+                       <input type="hidden" name="{{$field.0}}" value="0">
+                       <input type="checkbox" name="{{$field.0}}" id="id_{{$field.0}}" value="1" {{if $field.2}}checked="checked"{{/if}} aria-checked="{{if $field.2}}true{{else}}false{{/if}}" aria-describedby="{{$field.0}}_tip" {{if $field.4}}{{$field.4}}{{/if}}>
                        <label for="id_{{$field.0}}">
-                       {{$field.1}}
-                       <p class="help-block">{{$field.3}}</p>
+                               {{$field.1}}
+                               <span class="help-block" id="{{$field.0}}_tip" role="tooltip">{{$field.3}}</span>
                        </label>
        </div>
\ No newline at end of file