b13 / menus

TYPO3 Extension for creating fast menus in a fast fashion
GNU General Public License v2.0
54 stars 21 forks source link

Invalide Cache Identifier for many fe_groups #96

Closed achimfritz closed 1 year ago

achimfritz commented 1 year ago

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);