Skip to content

Commit

Permalink
Added 'FILTER_FLAG_NONE' to fix HHVM
Browse files Browse the repository at this point in the history
  • Loading branch information
DaGhostman committed Jul 14, 2015
1 parent 791909f commit b483397
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Wave/Framework/Http/Server.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class Server implements ServerInterface, MiddlewareAwareInterface
public function __construct(RequestInterface $request, ResponseInterface $response, array $source = null)
{
if ($source === null) {
$source = filter_input_array(INPUT_SERVER);
$source = filter_input_array(INPUT_SERVER, FILTER_FLAG_NONE);
}
$this->bufferLevel = ob_get_level();

Expand Down

0 comments on commit b483397

Please sign in to comment.