Index: api/soap/mc_project_api.php =================================================================== --- api/soap/mc_project_api.php (revision 5419) +++ api/soap/mc_project_api.php (working copy) @@ -63,7 +63,8 @@ $t_issue['resolution'] = mci_enum_get_array_by_id( $t_issue_data['resolution'], 'resolution', $t_lang ); $t_issue['fixed_in_version'] = mci_null_if_empty( $t_issue_data['fixed_in_version'] ); - + $t_issue['target_version'] = mci_null_if_empty( $t_issue_data['target_version'] ); + $t_issue['description'] = bug_get_text_field( $t_id, 'description' ); $t_issue['steps_to_reproduce'] = mci_null_if_empty( bug_get_text_field( $t_id, 'steps_to_reproduce' ) ); $t_issue['additional_information'] = mci_null_if_empty( bug_get_text_field( $t_id, 'additional_information' ) ); Index: api/soap/mc_issue_api.php =================================================================== --- api/soap/mc_issue_api.php (revision 5419) +++ api/soap/mc_issue_api.php (working copy) @@ -96,6 +96,7 @@ $t_issue_data['resolution'] = mci_enum_get_array_by_id( $t_bug['resolution'], 'resolution', $t_lang ); $t_issue_data['fixed_in_version'] = mci_null_if_empty( $t_bug['fixed_in_version'] ); + $t_issue_data['target_version'] = mci_null_if_empty( $t_bug['target_version'] ); $t_issue_data['description'] = $t_bug['description']; $t_issue_data['steps_to_reproduce'] = mci_null_if_empty( $t_bug['steps_to_reproduce'] ); @@ -507,6 +508,7 @@ $t_bug_data->platform = isset( $v_platform ) ? $v_platform : ''; $t_bug_data->version = isset( $v_version ) ? $v_version : ''; $t_bug_data->fixed_in_version = isset( $v_fixed_in_version ) ? $v_fixed_in_version : ''; + $t_bug_data->target_version = isset( $v_target_version ) ? $v_target_version : ''; $t_bug_data->build = isset( $v_build ) ? $v_build : ''; $t_bug_data->view_state = $t_view_state_id; $t_bug_data->summary = $v_summary; @@ -670,6 +672,7 @@ $t_bug_data->platform = isset( $v_platform ) ? $v_platform : ''; $t_bug_data->version = isset( $v_version ) ? $v_version : ''; $t_bug_data->fixed_in_version = isset( $v_fixed_in_version ) ? $v_fixed_in_version : ''; + $t_bug_data->target_version = isset( $v_target_version ) ? $v_target_version : ''; $t_bug_data->build = isset( $v_build ) ? $v_build : ''; $t_bug_data->view_state = $t_view_state_id; $t_bug_data->summary = $v_summary; Index: api/soap/mantisconnect.php =================================================================== --- api/soap/mantisconnect.php (revision 5419) +++ api/soap/mantisconnect.php (working copy) @@ -288,7 +288,8 @@ 'resolution' => array( 'name' => 'resolution', 'type' => 'tns:ObjectRef', 'minOccurs' => '0' ), 'fixed_in_version' => array( 'name'=>'fixed_in_version', 'type' => 'xsd:string', 'minOccurs' => '0' ), - + 'target_version' => array( 'name'=>'target_version', 'type' => 'xsd:string', 'minOccurs' => '0' ), + 'description' => array( 'name' => 'description', 'type' => 'xsd:string', 'minOccurs' => '0' ), 'steps_to_reproduce' => array( 'name' => 'steps_to_reproduce', 'type' => 'xsd:string', 'minOccurs' => '0' ), 'additional_information' => array( 'name' => 'additional_information', 'type' => 'xsd:string', 'minOccurs' => '0' ),