Skip to content

Commit

Permalink
Updated core, preserve space in arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
markseuffert committed Jul 22, 2024
1 parent 9cc6912 commit 6139298
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions system/extensions/update-available.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions system/extensions/yellow-extension.ini
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions system/workers/core.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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;
}
Expand All @@ -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;
}
Expand Down

0 comments on commit 6139298

Please sign in to comment.