how to select a new erquired field or to delete the existing required field.
for example,
how to take the required field of category option in repot issues
how to delete required fields
Moderators: Developer, Contributor
Re: how to delete required fields
Look for bug_report_page.php and bug_report_advanced_page.php in \Apache\Apache2\htdocs\mantis,
then you will find <span class="required">*</span> in part which you interested.
The field becomes non-required after you delete it.
then you will find <span class="required">*</span> in part which you interested.
The field becomes non-required after you delete it.
Re: how to delete required fields
Removing the span doesn't change a field from required to non-required. The span * is just a visual for the users. The actual code that makes a field required or not lives in bug_report.php.
Migrate your MantisBT to the MantisHub Cloud
Re: how to delete required fields
The actual code that makes a field required or not lives in bug_report.php:
Can you please tell how to change it?
I want to make category a not requiered field.
I've looked at the bug_report.php but cannot find where to make a modification.
Thanks
Can you please tell how to change it?
I want to make category a not requiered field.
I've looked at the bug_report.php but cannot find where to make a modification.
Thanks
Re: how to delete required fields
I made category field in bug_repoprt_page.php hidden and set
$g_default_bug_category.
This way Category field doesnt annoy any of my users..
$g_default_bug_category.
This way Category field doesnt annoy any of my users..
'Press any key to continue or any other key to quit'