Skip to content

Commit da333f0

Browse files
committed
fix building url. merged #167 too fast
1 parent 3eccda0 commit da333f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ChainRouter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ private function rebuildRequest($pathinfo)
280280
if ('http' === $this->context->getScheme() && 80 !== $this->context->getHttpPort()) {
281281
$host .= ':'.$this->context->getHttpPort();
282282
}
283-
$uri = $this->context->getScheme().'://'.$host.$uri.$this->context->getQueryString();
283+
$uri = $this->context->getScheme().'://'.$host.$uri.'?'.$this->context->getQueryString();
284284

285285
return Request::create($uri, $this->context->getMethod(), $this->context->getParameters(), array(), array(), $server);
286286
}

0 commit comments

Comments
 (0)