Skip to content

Commit

Permalink
Fix HHVM missing second argument for filter_input_array
Browse files Browse the repository at this point in the history
  • Loading branch information
DaGhostman committed Feb 22, 2015
1 parent 3de9231 commit 52feddb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Wave/Framework/Application/Server.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public function __construct($request, $response, $server = null)
$this->server = $server;

if (is_null($server)) {
$this->server = filter_input_array(INPUT_SERVER);
$this->server = filter_input_array(INPUT_SERVER, FILTER_FLAG_NONE);
}
}

Expand Down

0 comments on commit 52feddb

Please sign in to comment.