b13/menus

Invalide Cache Identifier for many fe_groups

Closed this issue · 0 comments

Screenshot 2023-06-09 at 10 22 31

may be we should use md5() hash for usergroups:
$identifier = $prefix . '-root-' . $root . '-language-' . $language . '-groups-' . md5(implode('_', $groupIds)) . '-' . $visibility . '-' . substr(md5(json_encode($configuration)), 0, 10);
instead of
$identifier = $prefix . '-root-' . $root . '-language-' . $language . '-groups-' .implode('_', $groupIds) . '-' . $visibility . '-' . substr(md5(json_encode($configuration)), 0, 10);