Custom field, Type "Date" only goes up to 31st Dec. 2027

General discussion of Mantis.

Moderators: Developer, Contributor

Post Reply
rabbit
Posts: 12
Joined: 12 Jun 2021, 06:32

Custom field, Type "Date" only goes up to 31st Dec. 2027

Post by rabbit »

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?
Bild.png
Bild.png (23.91 KiB) Viewed 11564 times
rabbit
Posts: 12
Joined: 12 Jun 2021, 06:32

Re: Custom field, Type "Date" only goes up to 31st Dec. 2027

Post by rabbit »

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

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]
Post Reply