diff --git a/lib/Doctrine/ORM/PersistentCollection.php b/lib/Doctrine/ORM/PersistentCollection.php index 3bfb0d1eb..25ccddd1a 100644 --- a/lib/Doctrine/ORM/PersistentCollection.php +++ b/lib/Doctrine/ORM/PersistentCollection.php @@ -37,7 +37,7 @@ use Doctrine\ORM\Mapping\ClassMetadata, * @author Konsta Vesterinen * @author Roman Borschel * @author Giorgio Sironi - * @todo Design for inheritance to allow custom implementations? + * @todo Design for inheritance to allow custom implementations? */ final class PersistentCollection implements Collection { @@ -775,12 +775,15 @@ final class PersistentCollection implements Collection public function __clone() { $this->initialize(); + $this->owner = null; if (is_object($this->coll)) { $this->coll = clone $this->coll; } + $this->snapshot = array(); + $this->changed(); } }