80c80,93 < --- > > function csv_get_custom_columns() { > # first get the custom columns for this project > $t_project_id = helper_get_current_project(); > > $t_custom_columns = array(); > $t_related_custom_field_ids = custom_field_get_linked_ids( $t_project_id ); > foreach( $t_related_custom_field_ids as $t_id ) { > $t_def = custom_field_get_definition( $t_id ); > $t_custom_columns[$t_id] = $t_def['name']; > //echo custom_field_get_value( $t_id, $v_id ); > } > return $t_custom_columns; > }