Page 1 of 1
reassign but keep same status
Posted: 08 Mar 2007, 22:55
by matto
Is there any way to keep the assign to button on the view bug page from changing the status of the bug to assigned?
Posted: 08 Mar 2007, 23:26
by ed
What are you trying to do?
If you want to pass an issue in feedback to someone else for more feedback, you can add the following to config_inc.php:
$g_status_enum_workflow[FEEDBACK] ='10:new,20:feedback,30:acknowledged,40:confirmed,50:assigned,80:resolved';
the default value is:
$g_status_enum_workflow[FEEDBACK] ='10:new,30:acknowledged,40:confirmed,50:assigned,80:resolved';
Posted: 09 Mar 2007, 06:01
by vboctor
matto, checkout the following configuration option:
Code: Select all
# Automatically set status to ASSIGNED whenever a bug is assigned to a person.
# This is useful for installations where assigned status is to be used when
# the bug is in progress, rather than just put in a person's queue.
$g_auto_set_status_to_assigned = OFF;
Setting it to OFF doesn't set the status to assigned when an issue is assigned.
Posted: 12 Mar 2007, 16:20
by matto
Thank you. That is exactly what I was looking for.
Posted: 12 Mar 2007, 21:04
by ed
and my above example will not work as a status can not be set to itself (from the change status to button on the view bug page).