Merge branch '4.2' into 4.3

This commit is contained in:
Aaron Carlino 2019-06-10 16:26:08 +12:00
commit b7707f319c

View File

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