Skip to content

Commit

Permalink
Don’t auto-set status when explicitly set by user
Browse files Browse the repository at this point in the history
Fixes #24242
  • Loading branch information
vboctor committed May 2, 2018
1 parent 58345c1 commit d6b1afe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bug_update.php
Expand Up @@ -379,7 +379,7 @@
if( $t_bug_note->note &&
config_get( 'reassign_on_feedback' ) &&
$t_existing_bug->status == config_get( 'bug_feedback_status' ) &&
$t_updated_bug->status != $t_existing_bug->status &&
$t_updated_bug->status == $t_existing_bug->status &&
$t_updated_bug->handler_id != $t_current_user_id &&
$t_updated_bug->reporter_id == $t_current_user_id
) {
Expand Down

0 comments on commit d6b1afe

Please sign in to comment.