fix another '0' problem

This commit is contained in:
Tobias Schultze 2012-07-09 00:24:52 +03:00
parent b34bdd4639
commit 413e0ae6e6

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');
}
}