Avoiding status changes when adding a note

Post about your customizations to share with others.

Moderators: Developer, Contributor

Post Reply
lcruzg
Posts: 3
Joined: 24 Feb 2015, 20:56

Avoiding status changes when adding a note

Post by lcruzg »

Hi,

I have a customized workflow in mantis but when I add a note it changes the status to NEW. I reviewed to forum and I only found solutions for the standard workflow.

Thanks in advance for all your help
8O
atrol
Site Admin
Posts: 8366
Joined: 26 Mar 2008, 21:37
Location: Germany

Re: Avoiding status changes when adding a note

Post by atrol »

Hard to say anything as you provided not much information.
Just a guess, add the following line to file config_inc.php

Code: Select all

$g_reassign_on_feedback = OFF;
From https://www.mantisbt.org/docs/master-1. ... FIG.STATUS
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.
Please use Search before posting and read the Manual
Post Reply