From 6139298476677ec63523055923b37ad5c6971d39 Mon Sep 17 00:00:00 2001 From: markseu Date: Mon, 22 Jul 2024 11:57:06 +0200 Subject: [PATCH] Updated core, preserve space in arguments --- system/extensions/update-available.ini | 4 ++-- system/extensions/yellow-extension.ini | 4 ++-- system/workers/core.php | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/system/extensions/update-available.ini b/system/extensions/update-available.ini index bf8a05e5..8bd250bf 100644 --- a/system/extensions/update-available.ini +++ b/system/extensions/update-available.ini @@ -149,14 +149,14 @@ system/themes/copenhagen.css: copenhagen.css, create, update, careful system/themes/copenhagen.png: copenhagen.png, create Extension: Core -Version: 0.9.10 +Version: 0.9.11 Description: Core functionality of your website. Developer: Anna Svensson Tag: feature DownloadUrl: https://github.com/annaesvensson/yellow-core/archive/refs/heads/main.zip DocumentationUrl: https://github.com/annaesvensson/yellow-core DocumentationLanguage: en, de, sv -Published: 2024-05-09 16:15:59 +Published: 2024-07-22 11:47:55 Status: available system/workers/core.php: core.php, create, update system/extensions/core.php: corepatch.txt, update diff --git a/system/extensions/yellow-extension.ini b/system/extensions/yellow-extension.ini index 357832f3..b48ffc32 100755 --- a/system/extensions/yellow-extension.ini +++ b/system/extensions/yellow-extension.ini @@ -1,14 +1,14 @@ # Datenstrom Yellow extension settings Extension: Core -Version: 0.9.10 +Version: 0.9.11 Description: Core functionality of your website. Developer: Anna Svensson Tag: feature DownloadUrl: https://github.com/annaesvensson/yellow-core/archive/refs/heads/main.zip DocumentationUrl: https://github.com/annaesvensson/yellow-core DocumentationLanguage: en, de, sv -Published: 2024-05-09 16:15:59 +Published: 2024-07-22 11:47:55 Status: available system/workers/core.php: core.php, create, update system/extensions/core.php: corepatch.txt, update diff --git a/system/workers/core.php b/system/workers/core.php index 990af80d..539ffdbf 100755 --- a/system/workers/core.php +++ b/system/workers/core.php @@ -2,7 +2,7 @@ // Core extension, https://github.com/annaesvensson/yellow-core class YellowCore { - const VERSION = "0.9.10"; + const VERSION = "0.9.11"; const RELEASE = "0.9"; public $content; // content files public $media; // media files @@ -1950,7 +1950,7 @@ public function getLocationArgumentsNew($key, $value) { $locationArguments .= "$key:$value"; } if (!is_string_empty($locationArguments)) { - $locationArguments = $this->yellow->lookup->normaliseArguments($locationArguments); + $locationArguments = $this->yellow->lookup->normaliseArguments($locationArguments, false); } return $locationArguments; } @@ -1967,7 +1967,7 @@ public function getLocationArgumentsCleanUrl() { } } if (!is_string_empty($locationArguments)) { - $locationArguments = $this->yellow->lookup->normaliseArguments($locationArguments); + $locationArguments = $this->yellow->lookup->normaliseArguments($locationArguments, false); } return $locationArguments; }