Skip to content

Commit 42c982d

Browse files
committedSep 13, 2012
Last updated date not bumped when group-changing custom field
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
1 parent a0e4b9b commit 42c982d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎bug_actiongroup.php

+1
Original file line numberDiff line numberDiff line change
@@ -316,6 +316,7 @@
316316
$t_form_var = "custom_field_$f_custom_field_id";
317317
$t_custom_field_value = gpc_get_custom_field( $t_form_var, $t_custom_field_def['type'], null );
318318
custom_field_set_value( $f_custom_field_id, $t_bug_id, $t_custom_field_value );
319+
bug_update_date( $t_bug_id );
319320
helper_call_custom_function( 'issue_update_notify', array( $t_bug_id ) );
320321
break;
321322

0 commit comments

Comments
 (0)
Please sign in to comment.