Skip to content

Commit

Permalink
Remove extra quotation in checkbox custom field
Browse files Browse the repository at this point in the history
Fixes #20083
  • Loading branch information
vboctor committed Sep 7, 2015
1 parent 0021b3f commit 9621796
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/cfdefs/cfdef_standard.php
Expand Up @@ -324,7 +324,7 @@ function cfdef_input_checkbox( array $p_field_def, $p_custom_field_value ) {
echo '<input 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 '<label for="' . $t_input_id . '">"' . string_display_line( $t_values[$i] ) . '</label>' . "\n";
echo '<label for="' . $t_input_id . '">' . string_display_line( $t_values[$i] ) . '</label>' . "\n";
}
}

Expand Down

0 comments on commit 9621796

Please sign in to comment.