View Issue Details

IDProjectCategoryView StatusLast Update
0005312mantisbtfeaturepublic2010-09-19 03:11
Reporterjbiechele Assigned Toatrol  
PrioritynormalSeverityminorReproducibilityalways
Status closedResolutionfixed 
Product Version0.19.2 
Summary0005312: Resolve Bug screen: Add field "assign to:"
Description

Is there an easy way to add the field "assign to:" to the "resolve bug screen" by myself?

This would help to do three things in one screen:

  • set status to "resolved"
  • add a note
  • and assign the resolved bug back to a colleague ..

Is something like that planed for a future release?

TagsNo tags attached.

Relationships

duplicate of 0003391 closedvboctor Set assign_to when resolving bug 

Activities

jrossiter

jrossiter

2005-10-13 03:09

reporter   ~0011493

I would love to see this added. Preferably with the default assignment being '[Reporter]'.

Schroedi

Schroedi

2005-10-24 09:43

reporter   ~0011524

Last edited: 2005-10-24 09:44

Hi, here is a little workaround:
Replace: if ( $t_resolved > $f_new_status ) { ?>
with: if ( $t_resolved >= $f_new_status ) { ?>
in: ./bug_change_status_page.php Line: 96.

That should show the "Assign to"-list even if you change status to resolved.

jbiechele

jbiechele

2005-10-27 06:01

reporter   ~0011552

Last edited: 2005-10-27 06:02

Thanks Schroedi for the workaround, works well so far, although hard to maintain in future releases ie. in "mantis-1.0.0rc2" the line to change in ./bug_change_status_page.php is #136, if I understood well your fix.

Original ./bug_change_status_page.php lines 136ff

if ( ( $t_resolved > $f_new_status ) &&
access_has_bug_level( config_get( 'update_bug_assign_threshold', config_get( 'update_bug_threshold')), $f_bug_id) ) { ?>
<!-- Assigned To -->
(...)

Changed ./bug_change_status_page.php lines 136ff

if ( ( $t_resolved >= $f_new_status ) &&
access_has_bug_level( config_get( 'update_bug_assign_threshold', config_get( 'update_bug_threshold')), $f_bug_id) ) { ?>
<!-- Assigned To -->
(...)

In any case I would love to see this minor change in an ofical release.
Thanks again.

atrol

atrol

2010-04-08 03:13

developer   ~0025063

this feature is available in 1.2.0

jbiechele

jbiechele

2010-04-08 04:34

reporter   ~0025065

wow, great to see this has been added.
Thank you for your efforts.