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

Commit

Permalink
Merge pull request #1239 in develop
Browse files Browse the repository at this point in the history
  • Loading branch information
GeeH committed Mar 31, 2014
2 parents 0823806 + 88b88ee commit 61602f6
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 61602f6

Please sign in to comment.