Merge branch '4.3' into 4.4

This commit is contained in:
Aaron Carlino 2019-06-10 16:26:32 +12:00
commit 3bf78e05df
1 changed files with 5 additions and 1 deletions

View File

@ -2366,7 +2366,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);
}
/**