Skip to content

Commit

Permalink
Merge branch 'release/1.7.27.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
rhukster committed Jan 12, 2022
2 parents a8c4e73 + 3e784a2 commit bab83ed
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# v1.7.27.1
## 01/12/2022

3. [](#bugfix)
* Fixed a typo in CSS Asset pipeline that was erroneously joining files with `;`

# v1.7.27
## 01/12/2022

Expand Down
2 changes: 1 addition & 1 deletion system/defines.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

// Some standard defines
define('GRAV', true);
define('GRAV_VERSION', '1.7.27');
define('GRAV_VERSION', '1.7.27.1');
define('GRAV_SCHEMA', '1.7.0_2020-11-20_1');
define('GRAV_TESTING', false);

Expand Down
2 changes: 1 addition & 1 deletion system/src/Grav/Common/Assets/Traits/AssetUtilsTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ protected function gatherLinks(array $assets, int $type = self::CSS_ASSET): stri
}

// Double check last character being
if ($type === self::CSS_ASSET) {
if ($type === self::JS_ASSET || $type === self::JS_MODULE_ASSET) {
$file = rtrim($file, ' ;') . ';';
}

Expand Down

0 comments on commit bab83ed

Please sign in to comment.