Hello everyone!
My MantisBT version is 1.2.14.
I have created an account whose role is reporter and I didn't modify the default authority of this role.Also I have added this account and product versions into a project.
When I report an issue by the reporter's account.I can't select the product version,nothing is in the drop-down list.
But when I do the same thing by the administrator's account,I can select it.
Is there sth. wrong with my configuration?
I can't select the product version when I report an issue
Moderators: Developer, Contributor
Re: I can't select the product version when I report an issu
The default setting is that only developers and above are able to report to unreleased versions.
Seems that all your versions are not set to released.
You can set them to released or allow also reporters to report issues for unreleased versions.
To change this add the following line to file config_inc.php
Seems that all your versions are not set to released.
You can set them to released or allow also reporters to report issues for unreleased versions.
To change this add the following line to file config_inc.php
Code: Select all
$g_report_issues_for_unreleased_versions_threshold = REPORTER;
Re: I can't select the product version when I report an issu
Oh,I see.Thank you very much!
atrol wrote:The default setting is that only developers and above are able to report to unreleased versions.
Seems that all your versions are not set to released.
You can set them to released or allow also reporters to report issues for unreleased versions.
To change this add the following line to file config_inc.php
Code: Select all
$g_report_issues_for_unreleased_versions_threshold = REPORTER;