Upgrade to 3.6.3.1
This commit is contained in:
@@ -3,7 +3,7 @@
|
|||||||
"description": "The Kirby 3 core",
|
"description": "The Kirby 3 core",
|
||||||
"license": "proprietary",
|
"license": "proprietary",
|
||||||
"type": "kirby-cms",
|
"type": "kirby-cms",
|
||||||
"version": "3.6.3",
|
"version": "3.6.3.1",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"kirby",
|
"kirby",
|
||||||
"cms",
|
"cms",
|
||||||
|
2
kirby/composer.lock
generated
2
kirby/composer.lock
generated
@@ -4,7 +4,7 @@
|
|||||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||||
"This file is @generated automatically"
|
"This file is @generated automatically"
|
||||||
],
|
],
|
||||||
"content-hash": "d4cf75084dae428fe0ab54124637d51f",
|
"content-hash": "a83b6521ea01c32fbdce60852c237a74",
|
||||||
"packages": [
|
"packages": [
|
||||||
{
|
{
|
||||||
"name": "claviska/simpleimage",
|
"name": "claviska/simpleimage",
|
||||||
|
@@ -268,7 +268,14 @@ class Server
|
|||||||
public static function requestUri(): array
|
public static function requestUri(): array
|
||||||
{
|
{
|
||||||
$uri = static::get('REQUEST_URI', '');
|
$uri = static::get('REQUEST_URI', '');
|
||||||
$uri = parse_url($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 [
|
return [
|
||||||
'path' => $uri['path'] ?? null,
|
'path' => $uri['path'] ?? null,
|
||||||
|
8
kirby/vendor/composer/installed.php
vendored
8
kirby/vendor/composer/installed.php
vendored
@@ -1,7 +1,7 @@
|
|||||||
<?php return array(
|
<?php return array(
|
||||||
'root' => array(
|
'root' => array(
|
||||||
'pretty_version' => '3.6.3',
|
'pretty_version' => '3.6.3.1',
|
||||||
'version' => '3.6.3.0',
|
'version' => '3.6.3.1',
|
||||||
'type' => 'kirby-cms',
|
'type' => 'kirby-cms',
|
||||||
'install_path' => __DIR__ . '/../../',
|
'install_path' => __DIR__ . '/../../',
|
||||||
'aliases' => array(),
|
'aliases' => array(),
|
||||||
@@ -29,8 +29,8 @@
|
|||||||
'dev_requirement' => false,
|
'dev_requirement' => false,
|
||||||
),
|
),
|
||||||
'getkirby/cms' => array(
|
'getkirby/cms' => array(
|
||||||
'pretty_version' => '3.6.3',
|
'pretty_version' => '3.6.3.1',
|
||||||
'version' => '3.6.3.0',
|
'version' => '3.6.3.1',
|
||||||
'type' => 'kirby-cms',
|
'type' => 'kirby-cms',
|
||||||
'install_path' => __DIR__ . '/../../',
|
'install_path' => __DIR__ . '/../../',
|
||||||
'aliases' => array(),
|
'aliases' => array(),
|
||||||
|
Reference in New Issue
Block a user