New Bug Reports always private

Get help from other users here.

Moderators: Developer, Contributor

Post Reply
ray
Posts: 2
Joined: 08 Aug 2010, 15:55

New Bug Reports always private

Post by ray »

Hey guys,

I've been installing Mantis and have still lots of issues in configuring it. I don't really get how to set up one project and assign it to a cathegory, to me it seems like they are two entirely separate things.

Anyways, I've been wondering, how can I set that all bugs being reported are always private? I want them to be moderated so admins can manually set propriate bug reports to public and delete inappropriate ones.

Regards!
atrol
Site Admin
Posts: 8572
Joined: 26 Mar 2008, 21:37
Location: Germany

Re: New Bug Reports always private

Post by atrol »

ray wrote:I've been wondering, how can I set that all bugs being reported are always private? I want them to be moderated so admins can manually set propriate bug reports to public and delete inappropriate ones.
add the followong lines to file config_inc.php

Code: Select all

$g_default_bug_view_status = VS_PRIVATE;
$g_bug_report_page_fields = array(
		'category_id',
		'handler',
		'priority',
		'severity',
		'reproducibility',
		'platform',
		'os',
		'os_version',
		'product_version',
		'product_build',
		'target_version',
		'summary',
		'description',
		'additional_info',
		'steps_to_reproduce',
		'attachments',
		'due_date',
);
Please use Search before posting and read the Manual
Post Reply