From 48652e35eef2d2fa2548806ee03d437d807f75ba Mon Sep 17 00:00:00 2001 From: yuri Date: Tue, 8 Oct 2019 17:04:35 +0300 Subject: [PATCH] fix integrations --- application/Espo/Entities/Integration.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/application/Espo/Entities/Integration.php b/application/Espo/Entities/Integration.php index 322e2687b2..5b998c3056 100644 --- a/application/Espo/Entities/Integration.php +++ b/application/Espo/Entities/Integration.php @@ -31,7 +31,7 @@ namespace Espo\Entities; class Integration extends \Espo\Core\ORM\Entity { - public function get($name, $params = array()) + public function get($name, $params = []) { if ($name == 'id') { return $this->id; @@ -100,6 +100,13 @@ class Integration extends \Espo\Core\ORM\Entity } } + public function isAttributeChanged($name) + { + if ($name === 'data') return true; + + return parent::isAttributeChanged($name); + } + public function populateFromArray(array $arr, $onlyAccessible = true, $reset = false) { if ($reset) {