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!
New Bug Reports always private
Moderators: Developer, Contributor
Re: New Bug Reports always private
add the followong lines to file config_inc.phpray 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.
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',
);