Skip to content

Commit

Permalink
Fixed #14052
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonkelly committed Dec 21, 2023
1 parent 2c6201f commit 809551d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
- Fixed a bug where various features weren’t working. ([#14062](https://github.com/craftcms/cms/pull/14062))
- Fixed a bug where Matrix and Addresses fields were overriding each others’ view states. ([#13976](https://github.com/craftcms/cms/pull/13976))
- Fixed an error that could occur when updating to Craft 5, if any Matrix fields hadn’t been saved since before Craft 3.2. ([#14061](https://github.com/craftcms/cms/issues/14061))
- Fixed a bug where globalized Matrix sub-fields could have the same handle as existing global fields, when updating to Craft 5. ([#14052](https://github.com/craftcms/cms/issues/14052))

## 5.0.0-alpha.2 - 2023-12-15

Expand Down
2 changes: 1 addition & 1 deletion src/migrations/m230617_070415_entrify_matrix_blocks.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public function safeUp(): bool
$fieldHandles = [];
foreach ($projectConfig->get(ProjectConfig::PATH_FIELDS) ?? [] as $fieldConfig) {
$fieldNames[$fieldConfig['name']] = true;
$fieldNames[$fieldConfig['handle']] = true;
$fieldHandles[$fieldConfig['handle']] = true;
}

// get all the block type configs, grouped by field
Expand Down

0 comments on commit 809551d

Please sign in to comment.