I created a customfield type "date" and linked it to a project.
However, I can't choose a date later than 31st December 2027.
Any ideas?
Custom field, Type "Date" only goes up to 31st Dec. 2027
Moderators: Developer, Contributor
Re: Custom field, Type "Date" only goes up to 31st Dec. 2027
Issue solved.
Found solution viewtopic.php?f=3&t=21652&p=52922&hilit ... ate#p52922.
Add these lines to file config_inc.php and adjust to your needs
Found solution viewtopic.php?f=3&t=21652&p=52922&hilit ... ate#p52922.
Add these lines to file config_inc.php and adjust to your needs
Code: Select all
/**
* Number of years in the past that custom date fields will display in
* drop down boxes.
* @global int $g_backward_year_count
*/
$g_backward_year_count = 4;
/**
* Number of years in the future that custom date fields will display in
* drop down boxes.
* @global int $g_forward_year_count
*/
[b]$g_forward_year_count = 4;[/b]