reassign but keep same status

Get help from other users here.

Moderators: Developer, Contributor

Post Reply
matto
Posts: 13
Joined: 31 Jan 2007, 18:49

reassign but keep same status

Post 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?
ed
Posts: 143
Joined: 14 Feb 2005, 02:04
Location: Sydney, Australia

Post 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';
vboctor
Site Admin
Posts: 1304
Joined: 13 Feb 2005, 22:11
Location: Redmond, Washington
Contact:

Post 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.
Migrate your MantisBT to the MantisHub Cloud
matto
Posts: 13
Joined: 31 Jan 2007, 18:49

Post by matto »

Thank you. That is exactly what I was looking for.
ed
Posts: 143
Joined: 14 Feb 2005, 02:04
Location: Sydney, Australia

Post 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).
Post Reply