This commit is contained in:
parent
919ec7141c
commit
5d12093b8e
1 changed files with 2 additions and 2 deletions
|
@ -194,8 +194,8 @@ class Doctrine_Connection_UnitOfWork extends Doctrine_Connection_Module
|
||||||
if ($record->hasReference($alias)) {
|
if ($record->hasReference($alias)) {
|
||||||
$obj = $record->$alias;
|
$obj = $record->$alias;
|
||||||
|
|
||||||
// check that the related object is either an instance of Doctrine_Record or an instance of Doctrine_Collection
|
// check that the related object is not an instance of Doctrine_Null
|
||||||
if ($obj instanceof Doctrine_Record || $obj instanceof Doctrine_Collection) {
|
if ( ! ($obj instanceof Doctrine_Null)) {
|
||||||
$obj->save($conn);
|
$obj->save($conn);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue