mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 09:48:40 +00:00
use & instead of , for fragments
This commit is contained in:
parent
04c1927c96
commit
51c9d71e02
|
|
@ -213,7 +213,7 @@ final class HttpUri implements UriInterface
|
|||
$this->query = \array_change_key_case($this->query, \CASE_LOWER);
|
||||
|
||||
$this->fragment = $url['fragment'] ?? '';
|
||||
$this->fragments = \explode(',', $url['fragment'] ?? '');
|
||||
$this->fragments = \explode('&', $url['fragment'] ?? '');
|
||||
$this->base = $this->scheme . '://' . $this->host . ($this->port !== 80 ? ':' . $this->port : '') . $this->rootPath;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user