From fe47a062761ea47774080a1217bc8e1edf11c3b8 Mon Sep 17 00:00:00 2001 From: Robert Munteanu Date: Tue, 23 Dec 2008 10:39:31 +0200 Subject: [PATCH] Fix 9995: Unable to update version, fixed_in_version and target_version Actually extracting the version fields from the issue. --- api/soap/mc_issue_api.php | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/api/soap/mc_issue_api.php b/api/soap/mc_issue_api.php index 0407aa4..b139ea2 100644 --- a/api/soap/mc_issue_api.php +++ b/api/soap/mc_issue_api.php @@ -612,6 +612,10 @@ function mc_issue_update( $p_username, $p_password, $p_issue_id, $p_issue ) { $t_description = $p_issue['description']; $t_custom_fields = $p_issue['custom_fields']; + $v_fixed_in_version = $p_issue['fixed_in_version']; + $v_version = $p_issue['version']; + $v_target_version = $p_issue['target_version']; + if( $t_reporter_id == 0 ) { $t_reporter_id = $t_user_id; } -- 1.6.0.2