Missing due_date

Get help from other users here.

Moderators: Developer, Contributor

Post Reply
JollyRoger
Posts: 13
Joined: 04 Nov 2011, 14:43

Missing due_date

Post by JollyRoger »

Hello,

I can't see the due_date field when creating or viewing a ticket. On the view all bug page I can see the due_date, but it's empty because I can't fill something in.

Does anoyone have an idea, how I can get my due date back?

Thanks,

JollyRoger
istvanb
Posts: 226
Joined: 22 Aug 2010, 21:00

Re: Missing due_date

Post by istvanb »

check if the due_date field is commented either in your config_defaults.php or in the config_inc.php file:

$g_bug_report_page_fields = array(
'category_id',
'view_state',
'handler',
'priority',
'severity',
'reproducibility',
'platform',
'os',
'os_version',
'product_version',
'product_build',
'target_version',
'summary',
'description',
'additional_info',
'steps_to_reproduce',
'attachments',
'due_date',
);
JollyRoger
Posts: 13
Joined: 04 Nov 2011, 14:43

Re: Missing due_date

Post by JollyRoger »

In my config_defaults_inc.php there is the due_date in $g_bug_report_page_fields
istvanb
Posts: 226
Joined: 22 Aug 2010, 21:00

Re: Missing due_date

Post by istvanb »

Sorry... most likely this will solve your problem:

$g_due_date_update_threshold = REPORTER;
$g_due_date_view_threshold = REPORTER;

Anyways I am somewhat pissed to the due_date field so I have created a plugin which sets the due-date based on the priority of the issue. You might be interested:
http://www.mantisbt.org/bugs/view.php?id=13794
JollyRoger
Posts: 13
Joined: 04 Nov 2011, 14:43

Re: Missing due_date

Post by JollyRoger »

Ok, there the value was NOBODY or something like that, but still I can't see the due_date

-----------

sorry my mistake, it works now!
Post Reply