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 1a2f2ab

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 9cb272a commit 1a2f2ab

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
@@ -278,6 +278,7 @@
278278
$t_form_var = "custom_field_$f_custom_field_id";
279279
$t_custom_field_value = gpc_get_custom_field( $t_form_var, $t_custom_field_def['type'], null );
280280
custom_field_set_value( $f_custom_field_id, $t_bug_id, $t_custom_field_value );
281+
bug_update_date( $t_bug_id );
281282
helper_call_custom_function( 'issue_update_notify', array( $t_bug_id ) );
282283
break;
283284

0 commit comments

Comments
 (0)
Please sign in to comment.