mikuli.cz

:)
git clone https://git.sr.ht/~ashymad/mikuli.cz
Log | Files | Refs

commit 6139298476677ec63523055923b37ad5c6971d39
parent 9cc6912ebd449a4182d77c908a6b6425c3bca111
Author: markseu <mark2011@mayberg.se>
Date:   Mon, 22 Jul 2024 11:57:06 +0200

Updated core, preserve space in arguments

Diffstat:
Msystem/extensions/update-available.ini | 4++--
Msystem/extensions/yellow-extension.ini | 4++--
Msystem/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 @@ -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 @@ -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 @@ -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 @@ class YellowToolbox { $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 @@ class YellowToolbox { } } if (!is_string_empty($locationArguments)) { - $locationArguments = $this->yellow->lookup->normaliseArguments($locationArguments); + $locationArguments = $this->yellow->lookup->normaliseArguments($locationArguments, false); } return $locationArguments; }