diff --git a/src/Symfony/Component/HttpFoundation/Request.php b/src/Symfony/Component/HttpFoundation/Request.php index b42ca9bde0..f871f43538 100644 --- a/src/Symfony/Component/HttpFoundation/Request.php +++ b/src/Symfony/Component/HttpFoundation/Request.php @@ -130,7 +130,7 @@ class Request $request = new static($_GET, $_POST, array(), $_COOKIE, $_FILES, $_SERVER); if ('application/x-www-form-urlencoded' == $request->server->get('CONTENT_TYPE') - && in_array(strtoupper($request->server->get('REQUEST_METHOD', 'GET'), array('PUT', 'DELETE')) + && in_array(strtoupper($request->server->get('REQUEST_METHOD', 'GET')), array('PUT', 'DELETE')) ) { parse_str($this->getContent(), $data); $request->request = new ParameterBag($data);