When a bug is closed and then reopened, the bug will go into the ASSIGNED status and also the keyword Reopened should be added.
Created attachment 295203 [details] Patch to add reopened keyword when a closed bug is reopened.
Worked 1 hour.
Comment on attachment 295203 [details] Patch to add reopened keyword when a closed bug is reopened. Hi Dave ,, The patch looks good except for one thing: in the line: $self->modify_keywords(['Reopened'], 'add'); The keywords should be passed to modify_keywords as string, not an array ref , so it should be $self->modify_keywords('Reopened', 'add'); it gets then split up at _check_keywords and returned as an array ref. Noura
Created attachment 295529 [details] Patch to add reopened keyword when a closed bug is reopened (v2) Thanks Noura. I have attached a new version with the fix included.
Comment on attachment 295529 [details] Patch to add reopened keyword when a closed bug is reopened (v2) patch looks good to me. I tested it earlier and was all good. Noura
Verified this still works with latest UI changes.