Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c610904

Browse files
committedApr 23, 2013
Fix #15777: Wrong value in field "Date Submitted" when copying issues
1 parent 26572cd commit c610904

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed
 

‎core/bug_api.php

-2
Original file line numberDiff line numberDiff line change
@@ -950,8 +950,6 @@ function bug_copy( $p_bug_id, $p_target_project_id = null, $p_copy_custom_fields
950950
bug_set_field( $t_new_bug_id, 'status', $t_bug_data->status );
951951
bug_set_field( $t_new_bug_id, 'resolution', $t_bug_data->resolution );
952952
bug_set_field( $t_new_bug_id, 'projection', $t_bug_data->projection );
953-
bug_set_field( $t_new_bug_id, 'date_submitted', $t_bug_data->date_submitted );
954-
bug_set_field( $t_new_bug_id, 'last_updated', $t_bug_data->last_updated );
955953
bug_set_field( $t_new_bug_id, 'eta', $t_bug_data->eta );
956954
bug_set_field( $t_new_bug_id, 'fixed_in_version', $t_bug_data->fixed_in_version );
957955
bug_set_field( $t_new_bug_id, 'target_version', $t_bug_data->target_version );

0 commit comments

Comments
 (0)
Please sign in to comment.