From 4e6b7ca1acc9c874d7131d44e903bb0be7d5c318 Mon Sep 17 00:00:00 2001 From: Brandon Shipley Date: Wed, 2 Apr 2025 01:39:07 -0700 Subject: [PATCH] categories not attributes fix --- src/Controller/ProductCategoryAttributesController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Controller/ProductCategoryAttributesController.php b/src/Controller/ProductCategoryAttributesController.php index 5f9679e..868e890 100644 --- a/src/Controller/ProductCategoryAttributesController.php +++ b/src/Controller/ProductCategoryAttributesController.php @@ -172,8 +172,8 @@ class ProductCategoryAttributesController extends AppController */ public function form() { - $productCategoryAttributes = $this->getTable()->getAllCategoryAttributesForCategoryId($this->request->getQuery('product_category_id', '-1')); + $productCategories = $this->getTable()->getAllCategoryAttributesForCategoryId($this->request->getQuery('product_category_id', '-1')); - $this->set(compact('productCategoryAttributes')); + $this->set(compact('productCategories')); } }