mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
Merge branch '4.2' into 4.3
This commit is contained in:
commit
b7707f319c
@ -2354,7 +2354,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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user