Skip to content

Commit

Permalink
[RequestHandler] dynamic method called as static
Browse files Browse the repository at this point in the history
  • Loading branch information
pborreli authored and fabpot committed Apr 12, 2010
1 parent 07aabad commit 3dc26a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Symfony/Components/RequestHandler/Request.php
Expand Up @@ -79,7 +79,7 @@ public function initialize(array $query = null, array $request = null, array $pa
$this->query = new RequestBag(null !== $query ? $query : $_GET);
$this->path = new RequestBag(null !== $path ? $path : array());
$this->cookies = new RequestBag(null !== $cookies ? $cookies : $_COOKIE);
$this->files = new RequestBag(self::convertFileInformation(null !== $files ? $files : $_FILES));
$this->files = new RequestBag($this->convertFileInformation(null !== $files ? $files : $_FILES));
$this->server = new RequestBag(null !== $server ? $server : $_SERVER);
$this->headers = new RequestBag($this->initializeHeaders());

Expand Down

0 comments on commit 3dc26a7

Please sign in to comment.