Index: trunk/extensions/SemanticForms/includes/forminputs/SF_CheckboxesInput.php |
— | — | @@ -73,7 +73,7 @@ |
74 | 74 | if ( $is_disabled ) { |
75 | 75 | $checkbox_attrs['disabled'] = 'disabled'; |
76 | 76 | } |
77 | | - $checkbox_input = Html::element( $cur_input_name, $possible_value, 'checkbox', $checkbox_attrs ); |
| 77 | + $checkbox_input = Html::input( $cur_input_name, $possible_value, 'checkbox', $checkbox_attrs ); |
78 | 78 | |
79 | 79 | // Make a span around each checkbox, for CSS purposes. |
80 | 80 | $text .= "\t" . Html::rawElement( 'span', |