Done. This is what I see when I click on 'Add new event' on my calendar page.
Serialization of 'Closure' is not allowed
.../libraries/src/Cache/Cache.php:664
659 foreach ($headnow as $now => $value)
660 {
661 if (isset($options['headerbefore'][$now]))
662 {
663 // We have to serialize the content of the arrays because the may contain other arrays which is a notice in PHP 5.4 and newer
664 $nowvalue = array_map('serialize', $headnow[$now]);
665 $beforevalue = array_map('serialize', $options['headerbefore'][$now]);
666
667 $newvalue = array_diff_assoc($nowvalue, $beforevalue);
668 $newvalue = array_map('unserialize', $newvalue);