If I add a CSS class to the menu item into the field for the page class, the CSS class is not set in body tag.
Patrick
In index.php if I replace
$pageclass = $menuParams->get('pageclass_sfx', '');
with this code
$pageclass = $menu !== null ? $menu->getParams()->get('pageclass_sfx', '') : '';
then it works.