Skip to content

Commit

Permalink
fix another '0' problem
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobion committed Jul 8, 2012
1 parent 3e53f0a commit 67f5684
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Request.php
Original file line number Diff line number Diff line change
Expand Up @@ -1321,7 +1321,7 @@ protected function prepareRequestUri()
} 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');
}
}
Expand Down

0 comments on commit 67f5684

Please sign in to comment.