@@ 1631-1637 (lines=7) @@ | ||
1628 | if (!isset($uploadedFile['error'])) { |
|
1629 | if (is_array($uploadedFile)) { |
|
1630 | $subArray = static::parseUploadedFiles($uploadedFile, $filterCallback); |
|
1631 | if (!empty($subArray)) { |
|
1632 | if (!isset($parsedFiles[$field])) { |
|
1633 | $parsedFiles[$field] = []; |
|
1634 | } |
|
1635 | ||
1636 | $parsedFiles[$field] = $subArray; |
|
1637 | } |
|
1638 | } |
|
1639 | continue; |
|
1640 | } |
|
@@ 1669-1675 (lines=7) @@ | ||
1666 | ]; |
|
1667 | ||
1668 | $subArray = static::parseUploadedFiles($subArray, $filterCallback); |
|
1669 | if (!empty($subArray)) { |
|
1670 | if (!isset($parsedFiles[$field])) { |
|
1671 | $parsedFiles[$field] = []; |
|
1672 | } |
|
1673 | ||
1674 | $parsedFiles[$field] = $subArray; |
|
1675 | } |
|
1676 | } |
|
1677 | } |
|
1678 | } |