From e3e001efbc6cd18c9e3363b0c7193bc5fce8aaab Mon Sep 17 00:00:00 2001 From: zYne Date: Wed, 23 May 2007 21:49:27 +0000 Subject: [PATCH] --- lib/Doctrine/Relation/ForeignKey.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lib/Doctrine/Relation/ForeignKey.php b/lib/Doctrine/Relation/ForeignKey.php index 9d6619936..440794aa6 100644 --- a/lib/Doctrine/Relation/ForeignKey.php +++ b/lib/Doctrine/Relation/ForeignKey.php @@ -45,7 +45,10 @@ class Doctrine_Relation_ForeignKey extends Doctrine_Relation { $id = array(); foreach ((array) $this->definition['local'] as $local) { - $id[] = $record->get($local); + $value = $record->get($local); + if (isset($value)) { + $id[] = $value; + } } if ($this->isOneToOne()) { if (empty($id)) { @@ -60,7 +63,7 @@ class Doctrine_Relation_ForeignKey extends Doctrine_Relation $related->set($this->definition['foreign'], $record, false); - } else { + } else { if (empty($id)) { $related = new Doctrine_Collection($this->getTable());