MyBB Community Forums

Full Version: Calander?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi guys

can i extend the calendar, it only lets me enter events upto 4 years in advanced, i would like it to allow me to enter events further (5 years)?

thanks
This is hard-coded in PHP.
To extend the limit of 5, just edit ./calendar.php in line 417 (v1.8.22):
for($year = my_date('Y'); $year < (my_date('Y') + 5); ++$year)

[ExiTuS]