Fix bug in ChangeTrackingNotify code
This commit is contained in:
parent
fa7574b2ba
commit
decd1482de
1 changed files with 1 additions and 1 deletions
|
@ -455,7 +455,7 @@ class UnitOfWork implements PropertyChangedListener
|
||||||
// and we have a copy of the original data
|
// and we have a copy of the original data
|
||||||
$originalData = $this->originalEntityData[$oid];
|
$originalData = $this->originalEntityData[$oid];
|
||||||
$isChangeTrackingNotify = $class->isChangeTrackingNotify();
|
$isChangeTrackingNotify = $class->isChangeTrackingNotify();
|
||||||
$changeSet = $isChangeTrackingNotify ? $this->entityChangeSets[$oid] : array();
|
$changeSet = ($isChangeTrackingNotify && isset($this->entityChangeSets[$oid])) ? $this->entityChangeSets[$oid] : array();
|
||||||
|
|
||||||
foreach ($actualData as $propName => $actualValue) {
|
foreach ($actualData as $propName => $actualValue) {
|
||||||
$orgValue = isset($originalData[$propName]) ? $originalData[$propName] : null;
|
$orgValue = isset($originalData[$propName]) ? $originalData[$propName] : null;
|
||||||
|
|
Loading…
Add table
Reference in a new issue