This commit is contained in:
parent
95f539567d
commit
cc01ca4686
1 changed files with 2 additions and 2 deletions
|
@ -51,7 +51,7 @@ class Doctrine_Relation_ForeignKey extends Doctrine_Relation
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if ($this->isOneToOne()) {
|
if ($this->isOneToOne()) {
|
||||||
if (empty($id)) {
|
if ( ! $record->exists() || empty($id)) {
|
||||||
$related = $this->getTable()->create();
|
$related = $this->getTable()->create();
|
||||||
} else {
|
} else {
|
||||||
$dql = 'FROM ' . $this->getTable()->getComponentName()
|
$dql = 'FROM ' . $this->getTable()->getComponentName()
|
||||||
|
@ -65,7 +65,7 @@ class Doctrine_Relation_ForeignKey extends Doctrine_Relation
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
if (empty($id)) {
|
if ( ! $record->exists() || empty($id)) {
|
||||||
$related = new Doctrine_Collection($this->getTable());
|
$related = new Doctrine_Collection($this->getTable());
|
||||||
} else {
|
} else {
|
||||||
$query = $this->getRelationDql(1);
|
$query = $this->getRelationDql(1);
|
||||||
|
|
Loading…
Add table
Reference in a new issue