Skip to content

Commit 9c3495d

Browse files
committed
fix php warning
1 parent eae0b34 commit 9c3495d

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Version 26.0.2
2+
3+
## Bugfixes
4+
5+
* Fix php warning undefined array key
6+
17
# Version 26.0.1
28

39
## Bugfixes
@@ -14,6 +20,18 @@
1420
* Add PHP ">=8.1" support
1521
* Remove PHP 7.3 support
1622

23+
# Version 25.0.7
24+
25+
## Bugfixes
26+
27+
* Fix php warning undefined array key
28+
29+
# Version 25.0.6
30+
31+
## Bugfixes
32+
33+
* refactoring clean-up-links and clean-up-variants to remove old data from relation table
34+
1735
# Version 25.0.5
1836

1937
## Bugfixes

src/Subjects/VariantSubject.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public function setUp($serial)
5858
$status = $registryProcessor->getAttribute(RegistryKeys::STATUS);
5959

6060
// load the SKU => entity ID mapping
61-
$this->skuEntityIdMapping = $status[RegistryKeys::SKU_ENTITY_ID_MAPPING];
61+
$this->skuEntityIdMapping = $status[RegistryKeys::SKU_ENTITY_ID_MAPPING] ?? null;
6262
}
6363

6464
/**

0 commit comments

Comments
 (0)