Skip to content

Commit

Permalink
Merge branch 'master-2.7'
Browse files Browse the repository at this point in the history
  • Loading branch information
atrol committed Oct 22, 2017
2 parents f57c0b5 + 2263c7c commit 1cb34a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/cfdefs/cfdef_standard.php
Expand Up @@ -401,7 +401,7 @@ function cfdef_input_checkbox( array $p_field_def, $p_custom_field_value, $p_req
$t_input_id = 'custom_field_' . $p_field_def['id'] . '_value_' . $i;
$t_input_name = 'custom_field_' . $p_field_def['id'] . '[]';
echo '<label for="' . $t_input_id . '">' . "\n";
echo '<input class="ace" id="' . $t_input_id . '" ' . helper_get_tab_index() . ' type="checkbox" name="' . $t_input_name . '" value="' . string_attribute( $t_values[$i] ) . '"' . $p_required;
echo '<input class="ace" id="' . $t_input_id . '" ' . helper_get_tab_index() . ' type="checkbox" name="' . $t_input_name . '" value="' . string_attribute( $t_values[$i] ) . '"';
check_checked( $t_checked_values, $t_values[$i] );
echo " />\n";
echo '<span class="lbl">&#160;' . string_display_line( $t_values[$i] ) . '</label>' . "\n";
Expand Down

0 comments on commit 1cb34a3

Please sign in to comment.