Index: branches/5.2.x/core/kernel/db/dbitem.php =================================================================== diff -u -N -r15454 -r15455 --- branches/5.2.x/core/kernel/db/dbitem.php (.../dbitem.php) (revision 15454) +++ branches/5.2.x/core/kernel/db/dbitem.php (.../dbitem.php) (revision 15455) @@ -1,6 +1,6 @@ _getUploaderFields(); foreach ($uploader_fields as $field) { $formatter = $this->Application->recallObject($this->GetFieldOption($field, 'formatter')); /* @var $formatter kUploadFormatter */ - $this->SetDBField($field, $formatter->processFlashUpload($this, $field, $id)); + $changed_fields = array_merge($changed_fields, $formatter->processFlashUpload($this, $field, $id)); } - if ( $this->GetChangedFields() ) { - $this->Update(); + if ( $changed_fields ) { + $this->Update(null, array_unique($changed_fields)); } }