Page 1 of 1

What is "feedback" status for

Posted: 29 Feb 2012, 12:34
by istvanb
I dont understand how the "feedback" status works. Can somebody explains it to me or point to document where I can read about that?

Re: What is "feedback" status for

Posted: 29 Feb 2012, 14:23
by atrol
Extract from config_defaults_inc.php

Code: Select all

/**
	 * Status to assign to the bug when feedback is required from the issue reporter.
	 * Once the reporter adds a note the status moves back from feedback to $g_bug_assigned_status
	 * or $g_bug_submit_status.
	 * @global int $g_bug_feedback_status
	 */
	$g_bug_feedback_status = FEEDBACK;

	/**
	 * 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;

Re: What is "feedback" status for

Posted: 29 Feb 2012, 14:29
by istvanb
thx, I will try how it works.