Page 1 of 1

Mysterious status change

Posted: 15 Dec 2011, 13:06
by misu
Hi all,
I've strange behaviour of Mantis - an issue is in status "feedback" and user with role "reporter" add the notes. The notes are added but above this - the status of issue is changed to "new". Can anyone help me - I think all settings are correct.
Thank a lot
MiSu

Re: Mysterious status change

Posted: 15 Dec 2011, 13:56
by atrol
This is the intended behaviour

Code: Select all

/**
 * When a note is added to a bug currently in $g_bug_feedback_status, and the note
 * author is the bug's reporter, this option will automatically set the bug status
 * to $g_bug_submit_status or $g_bug_assigned_status if the bug is assigned to a
 * developer.  Defaults to enabled.
 * @global boolean $g_reassign_on_feedback
 */
$g_reassign_on_feedback = ON;
if you don't like this feature just add the following line to config_cin.php

Code: Select all

$g_reassign_on_feedback = OFF;

Re: Mysterious status change

Posted: 15 Dec 2011, 14:22
by misu
Great - thank a lot :-)
MiSu