We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e905e9f commit 8ffc18aCopy full SHA for 8ffc18a
module/Core/src/Core/Form/FileCollection.php
@@ -57,6 +57,9 @@ public function bindValues(array $values = array())
57
$collection = $this->getEntityCollection();
58
59
foreach ($values as $name => $value) {
60
+ if (UPLOAD_ERR_OK != $value['error']) {
61
+ continue;
62
+ }
63
$element = $this->get($name);
64
65
$entity = $hydrator->hydrate($value, $this->getEntity());
0 commit comments