Skip to content
This repository has been archived by the owner on May 24, 2018. It is now read-only.

Commit

Permalink
Update zend.input-filter.file-input.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
macnibblet committed Mar 31, 2014
1 parent c8711b3 commit 599a68d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/languages/en/modules/zend.input-filter.file-input.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Usage of ``FileInput`` is essentially the same as ``Input``:
// Merge $_POST and $_FILES data together
$request = new Request();
$postData = array_merge_recursive($request->getPost(), $request->getFiles());
$postData = array_merge_recursive($request->getPost()->toArray(), $request->getFiles()->toArray());
$inputFilter = new InputFilter();
$inputFilter->add($description)
Expand Down

0 comments on commit 599a68d

Please sign in to comment.