Skip to content
This repository has been archived by the owner on Jul 16, 2021. It is now read-only.

Commit

Permalink
Adapt to required change in standard request view helper
Browse files Browse the repository at this point in the history
  • Loading branch information
aimeos committed Jan 23, 2016
1 parent 5522c44 commit befaf79
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion lib/custom/src/MW/View/Helper/Request/Flow.php
Expand Up @@ -99,6 +99,12 @@ public function getTarget()
*/
public function getUploadedFiles()
{
return $this->createUploadedFiles( $this->files );
$list = array();

foreach( $this->files as $name => $array ) {
$list[$name] = $this->createUploadedFiles( $array );
}

return $list;
}
}

0 comments on commit befaf79

Please sign in to comment.