diff --git a/lib/Doctrine/ORM/PersistentCollection.php b/lib/Doctrine/ORM/PersistentCollection.php index b7e7d7ccb..4cff149bd 100644 --- a/lib/Doctrine/ORM/PersistentCollection.php +++ b/lib/Doctrine/ORM/PersistentCollection.php @@ -235,13 +235,13 @@ final class PersistentCollection implements \Doctrine\Common\Collections\Collect } $this->_coll->clear(); $this->_association->load($this->_owner, $this, $this->_em); + $this->takeSnapshot(); // Reattach NEW objects added through add(), if any. if (isset($newObjects)) { foreach ($newObjects as $obj) { $this->_coll->add($obj); } } - $this->takeSnapshot(); $this->_initialized = true; } } @@ -435,6 +435,8 @@ final class PersistentCollection implements \Doctrine\Common\Collections\Collect // SQL "SELECT 1" on the association (table) without initializing // the collection. + // TODO: Change to use PK identity, not php object identity!? + $this->_initialize(); return $this->_coll->contains($element); }