Details
-
Type: Bug
-
Status: Closed
-
Priority: Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 5.1.2
-
Component/s: None
-
Labels:None
Description
To reproduce:
- Create a package group with at least one package
- Create two addon package groups with different names and assign them to the first package group
- Create an order form for the original package group
- Order an item from that form
- See that the first addon group is listed twice
To resolve change plugins/order/controllers/config.php around line 307 from
foreach ($addon_groups as $key => $addon_group) {
To
foreach ($addon_groups as $key => &$addon_group) {