Skip to content

Commit

Permalink
Fixes theme admin checkbox option display
Browse files Browse the repository at this point in the history
  • Loading branch information
Craig Freeman committed Mar 27, 2013
1 parent 568d3ef commit dafcbab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin.php
Expand Up @@ -278,7 +278,7 @@ function cfct_options_input($args) {
$html .= '
<li>
<label for="'.esc_attr($name.'-'.$opt_value).'">
<input type="checkbox" name="'.esc_attr($name.'['.$opt_value.']').'" value="'.esc_attr($opt_value).'" id="'.esc_attr($name.'-'.$opt_value).'"'.checked($opt_value, $value[$opt['id']], false).' />
<input type="checkbox" name="'.esc_attr($name.'['.$opt_value.']').'" value="'.esc_attr($opt_value).'" id="'.esc_attr($name.'-'.$opt_value).'"'.checked($opt_value, $value[$opt_value], false).' />
'.esc_html($opt_label).'
</label>
</li>';
Expand Down

0 comments on commit dafcbab

Please sign in to comment.