Skip to content

Commit 02f22c4

Browse files
authored
Merge pull request #661 from extcode/659-using-zones-for-payment-or-shipping-method-fails-with-undefined-array-key
[BUGFIX] Change order in condition to avoid access undefined array key
2 parents 35785f9 + aa5e8e7 commit 02f22c4

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Classes/Service/AbstractConfigurationFromTypoScriptService.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ public function getConfigurationsForType(string $configurationType, ?string $cou
6363
if (isset($country)) {
6464
if (
6565
!empty($configuration['countries']) &&
66-
is_array($configuration['countries'][$country]) &&
67-
!empty($configuration['countries'][$country])
66+
!empty($configuration['countries'][$country]) &&
67+
is_array($configuration['countries'][$country])
6868
) {
6969
return $configuration['countries'][$country];
7070
}

Documentation/guides.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
interlink-shortcode="extcode/cart"
1212
/>
1313
<project title="Cart"
14-
release="11.4.3"
14+
release="11.4.4"
1515
version="11.4"
1616
copyright="2018 - 2025"
1717
/>

ext_emconf.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
'title' => 'Cart',
55
'description' => 'Shopping Cart(s) for TYPO3',
66
'category' => 'plugin',
7-
'version' => '11.4.3',
7+
'version' => '11.4.4',
88
'state' => 'stable',
99
'author' => 'Daniel Gohlke',
1010
'author_email' => 'ext@extco.de',

0 commit comments

Comments
 (0)