Mysterious status change

General discussion of Mantis.

Moderators: Developer, Contributor

Post Reply
misu
Posts: 18
Joined: 22 Sep 2008, 19:52

Mysterious status change

Post 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
atrol
Site Admin
Posts: 8562
Joined: 26 Mar 2008, 21:37
Location: Germany

Re: Mysterious status change

Post 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;
Please use Search before posting and read the Manual
misu
Posts: 18
Joined: 22 Sep 2008, 19:52

Re: Mysterious status change

Post by misu »

Great - thank a lot :-)
MiSu
Post Reply