Index: cfdef_standard.php
===================================================================
--- cfdef_standard.php	(revision 3828)
+++ cfdef_standard.php	(working copy)
@@ -240,9 +240,9 @@
 	}
 
 	if ( $p_field_def['type'] == CUSTOM_FIELD_TYPE_MULTILIST ) {
-		echo '<select ', helper_get_tab_index(), ' name="custom_field_' . $p_field_def['id'] . '[]" size="' . $t_list_size . '" multiple="multiple">';
+		echo '<select ', ' name="custom_field_' . $p_field_def['id'] . '[]" size="' . $t_list_size . '" multiple="multiple">';
 	} else {
-		echo '<select ', helper_get_tab_index(), ' name="custom_field_' . $p_field_def['id'] . '" size="' . $t_list_size . '">';
+		echo '<select ', ' name="custom_field_' . $p_field_def['id'] . '" size="' . $t_list_size . '">';
 	}
 
 	$t_selected_values = explode( '|', $t_custom_field_value );
@@ -260,7 +260,7 @@
 	$t_values = explode( '|', custom_field_prepare_possible_values( $p_field_def['possible_values'] ) );
 	$t_checked_values = explode( '|', $t_custom_field_value );
 	foreach( $t_values as $t_option ) {
-		echo '<input ', helper_get_tab_index(), ' type="checkbox" name="custom_field_' . $p_field_def['id'] . '[]"';
+		echo '<input ', ' type="checkbox" name="custom_field_' . $p_field_def['id'] . '[]"';
 		if( in_array( $t_option, $t_checked_values, true ) ) {
 			echo ' value="' . string_attribute( $t_option ) . '" checked="checked">&#160;' . string_display_line( $t_option ) . '&#160;&#160;';
 		} else {
@@ -280,7 +280,7 @@
 	}
 
 	foreach ( $t_values as $t_option ) {
-		echo '<input ', helper_get_tab_index(), ' type="radio" name="custom_field_' . $p_field_def['id'] . '"';
+		echo '<input ', ' type="radio" name="custom_field_' . $p_field_def['id'] . '"';
 
 		if ( $t_option == $t_checked_value ) {
 			echo ' value="' . string_attribute( $t_option ) . '" checked="checked">&#160;' . string_display_line( $t_option ) . '&#160;&#160;';
@@ -291,7 +291,7 @@
 }
 
 function cfdef_input_textbox($p_field_def, $t_custom_field_value) {
-	echo '<input ', helper_get_tab_index(), ' type="text" name="custom_field_' . $p_field_def['id'] . '" size="80"';
+	echo '<input ', ' type="text" name="custom_field_' . $p_field_def['id'] . '" size="80"';
 	if( 0 < $p_field_def['length_max'] ) {
 		echo ' maxlength="' . $p_field_def['length_max'] . '"';
 	} else {
