merged branch Tobion/patch-1 (PR #4790)

Commits
-------

413e0ae fix another '0' problem

Discussion
----------

[HttpFoundation] fix another '0' problem
This commit is contained in:
Fabien Potencier 2012-07-09 08:31:25 +02:00
commit 7a91cace9e

View File

@ -1321,7 +1321,7 @@ class Request
} elseif ($this->server->has('ORIG_PATH_INFO')) {
// IIS 5.0, PHP as CGI
$requestUri = $this->server->get('ORIG_PATH_INFO');
if ($this->server->get('QUERY_STRING')) {
if ('' != $this->server->get('QUERY_STRING')) {
$requestUri .= '?'.$this->server->get('QUERY_STRING');
}
}