How to remove the "Reporter" bug page "priority"?

Post about your customizations to share with others.

Moderators: Developer, Contributor

Post Reply
tiago.silva
Posts: 3
Joined: 10 Nov 2015, 15:36

How to remove the "Reporter" bug page "priority"?

Post by tiago.silva »

I need only remove the priority of the reporter profile.

Best regards,

Tiago Silva.
Mejstro
Posts: 24
Joined: 07 May 2014, 12:07

Re: How to remove the "Reporter" bug page "priority"?

Post by Mejstro »

May would help something like this in config_inc.php. For hiding, the priority filed should be deleted from the array in the code below:

Code: Select all

$g_bug_report_page_fields = array(
		'category_id',
		'view_state',
		'handler',
		'priority',
		'platform',
		'os',
		'os_version',
		'product_version',
		'product_build',
		'target_version',
		'summary',
		'description',
		'attachments',
		'due_date',
	);
Post Reply