Page 1 of 1

Due date

Posted: 21 Dec 2021, 10:25
by Skoro
Hello all,

we are currently using MantisBT version 2.23.00. However, the due date is not displayed when entering the issue, see screenshot of the field Enter Issue Details.
Due date - enter issue.JPG
Due date - enter issue.JPG (44.34 KiB) Viewed 12875 times
In the Config_ing and also in Manage--> Manage columns the Due_date is entered, see attachment.
Due date - config.JPG
Due date - config.JPG (22.64 KiB) Viewed 12875 times
Due date - Manage.JPG
Due date - Manage.JPG (72.51 KiB) Viewed 12875 times
What is the problem? Is their anything I need to pay attention to?

Thanks for the help in advance!

Re: Due date

Posted: 21 Dec 2021, 17:14
by cas
look at these settings:

Code: Select all

/**
 * threshold to update due date submitted
 * @global integer $g_due_date_update_threshold
 */
$g_due_date_update_threshold = NOBODY;

/**
 * threshold to see due date
 * @global integer $g_due_date_view_threshold
 */
$g_due_date_view_threshold = NOBODY;
You need to change those values to @ least REPORTER to achieve what you want

Re: Due date

Posted: 22 Dec 2021, 12:10
by Skoro
Perfect, it is working now.
Thank you!