Skip to content

Commit

Permalink
Merge pull request #10923 from kinglozzer/10821-mmtl-changetracking
Browse files Browse the repository at this point in the history
FIX: Stop ManyManyThroughList join records incorrectly showing as changed (fixes #10821)
  • Loading branch information
GuySartorelli authored Aug 23, 2023
2 parents 5ee77b6 + 1fd4954 commit 2e92b89
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ORM/ManyManyThroughList.php
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@ public function createDataObject($row)
if ($joinRow) {
$joinClass = $this->manipulator->getJoinClass();
$joinQueryParams = $this->manipulator->extractInheritableQueryParameters($this->dataQuery);
$joinRecord = Injector::inst()->create($joinClass, $joinRow, false, $joinQueryParams);
$creationType = empty($joinRow['ID']) ? DataObject::CREATE_OBJECT : DataObject::CREATE_HYDRATED;
$joinRecord = Injector::inst()->create($joinClass, $joinRow, $creationType, $joinQueryParams);
$record->setJoin($joinRecord, $joinAlias);
}

Expand Down
15 changes: 15 additions & 0 deletions tests/php/ORM/ManyManyThroughListTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -514,4 +514,19 @@ public function testRemoveCallbackOnRemoveAll()
$relation->removeAll();
$this->assertEquals(sort($remove), sort($removedIds));
}

public function testChangedFields()
{
/** @var ManyManyThroughListTest\TestObject $parent */
$parent = $this->objFromFixture(ManyManyThroughListTest\TestObject::class, 'parent1');
$item1 = $parent->Items()->first();

// Nothing has changed yet
$this->assertEmpty($item1->getChangedFields());
$this->assertFalse($item1->isChanged('Title'));

// Change a field, ensure change is flagged
$item1->Title = 'a test title';
$this->assertTrue($item1->isChanged('Title'));
}
}

0 comments on commit 2e92b89

Please sign in to comment.