Replies: 1
When using HTML in field labels (e.g. <span class="glyphicon glyphicon-edit"> </span>Somelabel
) the JS of the form is broken. This is due to cp_calculatedfieldsf_public_int.inc.php line 58. There is the json_encode( $form_data )
function. This should be altered to:
json_encode( $form_data, JSON_HEX_QUOT | JSON_HEX_TAG )
Then everything works again.