What is "feedback" status for

Get help from other users here.

Moderators: Developer, Contributor

Post Reply
istvanb
Posts: 226
Joined: 22 Aug 2010, 21:00

What is "feedback" status for

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

Re: What is "feedback" status for

Post 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;
Please use Search before posting and read the Manual
istvanb
Posts: 226
Joined: 22 Aug 2010, 21:00

Re: What is "feedback" status for

Post by istvanb »

thx, I will try how it works.
Post Reply