We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2fc2008 + b48e7e5 commit 6dbb610Copy full SHA for 6dbb610
lib/Checkdomain/Holiday/Provider/AbstractEaster.php
@@ -19,7 +19,7 @@ protected function getEasterDates($year)
19
{
20
$easterSunday = new \DateTime('21.03.'.$year);
21
$easterSunday->modify(sprintf('+%d days', easter_days($year)));
22
- $easterSunday->setTimezone(new \DateTimeZone(ini_get('date.timezone')));
+ $easterSunday->setTimezone(new \DateTimeZone(date_default_timezone_get()));
23
24
$easterMonday = clone $easterSunday;
25
$easterMonday->modify('+1 day');
0 commit comments