But when an issue is assigned, it does not.
I think it's a kind of bug.
when an issue is assigned, it means issue state is changed, so issue_update_notify custom function should be called.
anyway, because of this, I change a source a bit.
I change the bottom of bug_assign.php to the following
Code: Select all
bug_assign( $f_bug_id, $f_handler_id );
helper_call_custom_function( 'issue_update_notify', array( $f_bug_id ) );
print_successful_redirect_to_bug( $f_bug_id );
?>
I just added helper_call_custom_function( 'issue_update_notify', array( $f_bug_id ) );.
I hope this code added to 1.1.0a3.
Thanks.