fixes #281
This commit is contained in:
parent
13cd323717
commit
9143270e06
1 changed files with 2 additions and 1 deletions
|
@ -157,7 +157,8 @@ class Doctrine_Connection_UnitOfWork extends Doctrine_Connection_Module implemen
|
||||||
// ONE-TO-ONE relationship
|
// ONE-TO-ONE relationship
|
||||||
$obj = $record->get($fk->getAlias());
|
$obj = $record->get($fk->getAlias());
|
||||||
|
|
||||||
if ($obj->state() != Doctrine_Record::STATE_TCLEAN) {
|
$state = $obj->state();
|
||||||
|
if ( !($state == Doctrine_Record::STATE_CLEAN || $state == Doctrine_Record::STATE_TCLEAN) ) {
|
||||||
$obj->save($this->conn);
|
$obj->save($this->conn);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue