Skip to content

Instantly share code, notes, and snippets.

@nicdford
Last active June 22, 2020 18:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nicdford/566d64cf6c395c7c5be0391164758619 to your computer and use it in GitHub Desktop.
Save nicdford/566d64cf6c395c7c5be0391164758619 to your computer and use it in GitHub Desktop.
// Line 143 - Missing input labels
$content .= sprintf( "<td data-label='%s' class='%s'><label for='%s'><span class='screen-reader-text'>%s</span></label><input name='%s' type='radio' title='test' value='%s' %s id='%s' %s %s %s/></input></td>", esc_attr( wp_strip_all_tags( $choice['text'], true ) ), $cell_class, $input_id, $input_name, $input_name, esc_attr( $field_value ), $checked, $input_id, $disabled_text, $this->get_tabindex(), $logic_event );
// Line 95 - Missing table header
$content .= "<th scope='col' class='gsurvey-likert-row-label'><span class='screen-reader-text'>Column selection options</span></th>";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment