diff --git a/code/Controllers/CMSMain.php b/code/Controllers/CMSMain.php index 5f41b325..9fa20345 100644 --- a/code/Controllers/CMSMain.php +++ b/code/Controllers/CMSMain.php @@ -2272,7 +2272,11 @@ class CMSMain extends LeftAndMain implements CurrentPageIdentifier, PermissionPr */ protected function generateHintsCacheKey($memberID) { - return md5($memberID . '_' . __CLASS__); + $baseKey = $memberID . '_' . __CLASS__; + + $this->extend('updateHintsCacheKey', $baseKey); + + return md5($baseKey); } /**