Skip to content

Commit

Permalink
Last updated date not bumped when group-changing custom field
Browse files Browse the repository at this point in the history
When updating a custom field via selection in view_all_bug_page.php and
subsequent submit on bug_actiongroup_page.php, the custom field and
history are properly updated, but the issue's last updated date was not
bumped.

Fixes #14706
  • Loading branch information
dregad committed Sep 13, 2012
1 parent a0e4b9b commit 42c982d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions bug_actiongroup.php
Expand Up @@ -316,6 +316,7 @@
$t_form_var = "custom_field_$f_custom_field_id";
$t_custom_field_value = gpc_get_custom_field( $t_form_var, $t_custom_field_def['type'], null );
custom_field_set_value( $f_custom_field_id, $t_bug_id, $t_custom_field_value );
bug_update_date( $t_bug_id );
helper_call_custom_function( 'issue_update_notify', array( $t_bug_id ) );
break;

Expand Down

0 comments on commit 42c982d

Please sign in to comment.