Page 1 of 1

Missing due_date

Posted: 24 Feb 2012, 13:01
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

Re: Missing due_date

Posted: 24 Feb 2012, 13:15
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',
);

Re: Missing due_date

Posted: 24 Feb 2012, 14:54
by JollyRoger
In my config_defaults_inc.php there is the due_date in $g_bug_report_page_fields

Re: Missing due_date

Posted: 24 Feb 2012, 15:09
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

Re: Missing due_date

Posted: 24 Feb 2012, 15:46
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!