Upgrade to 3.6.3.1

This commit is contained in:
Bastian Allgeier
2022-03-24 11:02:36 +01:00
parent f732a03566
commit 905981da5a
4 changed files with 14 additions and 7 deletions

View File

@@ -3,7 +3,7 @@
"description": "The Kirby 3 core",
"license": "proprietary",
"type": "kirby-cms",
"version": "3.6.3",
"version": "3.6.3.1",
"keywords": [
"kirby",
"cms",

2
kirby/composer.lock generated
View File

@@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
"content-hash": "d4cf75084dae428fe0ab54124637d51f",
"content-hash": "a83b6521ea01c32fbdce60852c237a74",
"packages": [
{
"name": "claviska/simpleimage",

View File

@@ -268,7 +268,14 @@ class Server
public static function requestUri(): array
{
$uri = static::get('REQUEST_URI', '');
if (Url::isAbsolute($uri) === true) {
$uri = parse_url($uri);
} else {
// the fake domain is needed to make sure the URL parsing is
// always correct. Even if there's a colon in the path for params
$uri = parse_url('http://getkirby.com' . $uri);
}
return [
'path' => $uri['path'] ?? null,

View File

@@ -1,7 +1,7 @@
<?php return array(
'root' => array(
'pretty_version' => '3.6.3',
'version' => '3.6.3.0',
'pretty_version' => '3.6.3.1',
'version' => '3.6.3.1',
'type' => 'kirby-cms',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
@@ -29,8 +29,8 @@
'dev_requirement' => false,
),
'getkirby/cms' => array(
'pretty_version' => '3.6.3',
'version' => '3.6.3.0',
'pretty_version' => '3.6.3.1',
'version' => '3.6.3.1',
'type' => 'kirby-cms',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),