summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--framework/Data/ActiveRecord/Relations/TActiveRecordHasMany.php2
-rw-r--r--framework/Data/ActiveRecord/Relations/TActiveRecordHasManyAssociation.php2
-rw-r--r--framework/Data/ActiveRecord/Relations/TActiveRecordRelationContext.php2
3 files changed, 3 insertions, 3 deletions
diff --git a/framework/Data/ActiveRecord/Relations/TActiveRecordHasMany.php b/framework/Data/ActiveRecord/Relations/TActiveRecordHasMany.php
index d70f911b..5c180c12 100644
--- a/framework/Data/ActiveRecord/Relations/TActiveRecordHasMany.php
+++ b/framework/Data/ActiveRecord/Relations/TActiveRecordHasMany.php
@@ -106,7 +106,7 @@ class TActiveRecordHasMany extends TActiveRecordRelation
{
foreach($fkeys as $fKey => $srcKey)
$fkObjects[$i]->{$fKey} = $source->{$srcKey};
- $success = $success && $fkObjects[$i]->save();
+ $success = $fkObjects[$i]->save() && $success;
}
}
}
diff --git a/framework/Data/ActiveRecord/Relations/TActiveRecordHasManyAssociation.php b/framework/Data/ActiveRecord/Relations/TActiveRecordHasManyAssociation.php
index 2dee2bcd..e83ca37f 100644
--- a/framework/Data/ActiveRecord/Relations/TActiveRecordHasManyAssociation.php
+++ b/framework/Data/ActiveRecord/Relations/TActiveRecordHasManyAssociation.php
@@ -307,7 +307,7 @@ class TActiveRecordHasManyAssociation extends TActiveRecordRelation
for($i=0;$i<$total;$i++)
{
if($registry->shouldPersistObject($fkObjects[$i]))
- $success = $success && $fkObjects[$i]->save();
+ $success = $fkObjects[$i]->save() && $success;
}
return $this->updateAssociationTable($obj, $fkObjects, $builder) && $success;
}
diff --git a/framework/Data/ActiveRecord/Relations/TActiveRecordRelationContext.php b/framework/Data/ActiveRecord/Relations/TActiveRecordRelationContext.php
index e601eb53..12f2a874 100644
--- a/framework/Data/ActiveRecord/Relations/TActiveRecordRelationContext.php
+++ b/framework/Data/ActiveRecord/Relations/TActiveRecordRelationContext.php
@@ -193,7 +193,7 @@ class TActiveRecordRelationContext
if(!empty($obj->{$property}))
{
$context = new self($this->getSourceRecord(),$property);
- $success = $success && $context->getRelationHandler()->updateAssociatedRecords();
+ $success = $context->getRelationHandler()->updateAssociatedRecords() && $success;
}
}
}