From 4367c3e51411d1d06bc190353122e17c05f4a5e7 Mon Sep 17 00:00:00 2001 From: Stefan Hagspiel Date: Thu, 5 May 2022 09:20:23 +0200 Subject: [PATCH] remove variable variables sign --- .../CoreExtension/ProductQuantityPriceRules.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CoreShop/Bundle/ProductQuantityPriceRulesBundle/CoreExtension/ProductQuantityPriceRules.php b/src/CoreShop/Bundle/ProductQuantityPriceRulesBundle/CoreExtension/ProductQuantityPriceRules.php index 695f096a2e..19db4e2271 100644 --- a/src/CoreShop/Bundle/ProductQuantityPriceRulesBundle/CoreExtension/ProductQuantityPriceRules.php +++ b/src/CoreShop/Bundle/ProductQuantityPriceRulesBundle/CoreExtension/ProductQuantityPriceRules.php @@ -277,7 +277,7 @@ public function getDataForEditmode($data, $object = null, $params = []) foreach ($priceCalculators as $type) { $calculationBehaviourTypes[] = [$type, 'coreshop_product_quantity_price_rules_calculator_' . strtolower($type)]; } - foreach ($$actions as $type) { + foreach ($actions as $type) { $pricingBehaviourTypes[] = [$type, 'coreshop_product_quantity_price_rules_behaviour_' . strtolower($type)]; }