categories not attributes fix

This commit is contained in:
Brandon Shipley 2025-04-02 01:39:07 -07:00
parent 2f80ba1fa3
commit 4e6b7ca1ac
Signed by: bmfs
GPG Key ID: 14E38571D8BB0DE4
1 changed files with 2 additions and 2 deletions

View File

@ -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'));
}
}