From 96ca44f91bcd6950d75ccbc9d555f16c2862fa98 Mon Sep 17 00:00:00 2001 From: yuri Date: Thu, 17 Dec 2015 15:14:23 +0200 Subject: [PATCH] fix acl table --- application/Espo/Core/Acl/Table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/Espo/Core/Acl/Table.php b/application/Espo/Core/Acl/Table.php index 1faf521317..d3730b368a 100644 --- a/application/Espo/Core/Acl/Table.php +++ b/application/Espo/Core/Acl/Table.php @@ -235,7 +235,7 @@ class Table public function getScopeForbiddenAttributeList($scope, $action = 'read', $thresholdLevel = 'no') { - $key = $scope . '_'. $thresholdLevel; + $key = $scope . '_'. $action . '_' . $thresholdLevel; if (isset($this->forbiddenAttributesCache[$key])) { return $this->forbiddenAttributesCache[$key]; }