A template caused my site to behave weird and only the header was loaded. I discovered that there are a few lines calling the function easter_date. If the function is getting called then my site breaks.
So the function does not seem to exist. So I added the line if (!is_callable('easter_date')) return false; and it actually returned false.
I am running on PHP 5.6.40. It says that easter_date is available in PHP 4, 5 and 7
Why does easter_date not exist?
Example Code:
$easter_d = date("d", easter_date($datum[0]));
$easter_m = date("m", easter_date($datum[0]));