From 2e9cd6a342ac752f60869f1ef00e18316bdfef06 Mon Sep 17 00:00:00 2001 From: Guillaume Lajarige Date: Thu, 5 Oct 2017 15:42:51 +0000 Subject: [PATCH] (Retrofit from trunk) Internal: Changed way AttributeLinkedSet check if two ormLinkSet are equal. SVN:2.4[4973] --- core/attributedef.class.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/attributedef.class.inc.php b/core/attributedef.class.inc.php index f53042206..d0a1fa0f9 100644 --- a/core/attributedef.class.inc.php +++ b/core/attributedef.class.inc.php @@ -1355,7 +1355,7 @@ class AttributeLinkedSet extends AttributeDefinition } else { - $bAreEquivalent = $val1->Equals($val2); + $bAreEquivalent = ($val2->HasDelta() === false); } return $bAreEquivalent; }