From f12162ad72d2772e6fe8e62b68ee1ce78ec9feca Mon Sep 17 00:00:00 2001 From: Anton Slyzhko <88829366+antonslyzhko@users.noreply.github.com> Date: Fri, 23 Jan 2026 15:39:03 +0200 Subject: [PATCH] prevent NotImplemented exception during template rendering (#3567) * prevent NotImplemented exception during template rendering * specify an action for ACL to check --- application/Espo/Core/Htmlizer/Htmlizer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/Espo/Core/Htmlizer/Htmlizer.php b/application/Espo/Core/Htmlizer/Htmlizer.php index 1daef25903..0a51ab7389 100644 --- a/application/Espo/Core/Htmlizer/Htmlizer.php +++ b/application/Espo/Core/Htmlizer/Htmlizer.php @@ -937,7 +937,7 @@ class Htmlizer continue; } - if ($this->acl && !$this->acl->checkEntityRead($relatedEntity)) { + if ($this->acl && !$this->acl->tryCheck($relatedEntity, Acl\Table::ACTION_READ)) { continue; }