nest under root CakeProducts config
CI / testsuite (mysql, 8.1, ) (push) Failing after 0s Details
CI / testsuite (mysql, 8.4, ) (push) Failing after 0s Details
CI / testsuite (pgsql, 8.1, ) (push) Failing after 0s Details
CI / testsuite (pgsql, 8.4, ) (push) Failing after 0s Details
CI / testsuite (sqlite, 8.1, ) (push) Failing after 0s Details
CI / testsuite (sqlite, 8.1, prefer-lowest) (push) Failing after 0s Details
CI / testsuite (sqlite, 8.4, ) (push) Failing after 0s Details
CI / Coding Standard & Static Analysis (push) Failing after 0s Details

This commit is contained in:
Brandon Shipley 2025-03-28 02:17:28 -07:00
parent 3f45e46f31
commit b6230817eb
Signed by: bmfs
GPG Key ID: 14E38571D8BB0DE4
2 changed files with 6 additions and 2 deletions

View File

@ -131,7 +131,9 @@ class ProductCatalogsController extends AppController
if ($this->_productCatalogsTable instanceof Table) {
return $this->_productCatalogsTable;
}
$this->_productCatalogsTable = TableRegistry::getTableLocator()->get(Configure::read('ProductCatalogs.table', 'CakeProducts.ProductCatalogs'));
$this->_productCatalogsTable = TableRegistry::getTableLocator()->get(
Configure::read('CakeProducts.ProductCatalogs.table', 'CakeProducts.ProductCatalogs')
);
return $this->_productCatalogsTable;
}

View File

@ -30,7 +30,9 @@ class ProductCategoriesController extends AppController
if ($this->_productCategoriesTable instanceof Table) {
return $this->_productCategoriesTable;
}
$this->_productCategoriesTable = TableRegistry::getTableLocator()->get(Configure::read('ProductCategories.table', 'CakeProducts.ProductCategories'));
$this->_productCategoriesTable = TableRegistry::getTableLocator()->get(
Configure::read('CakeProducts.ProductCategories.table', 'CakeProducts.ProductCategories')
);
return $this->_productCategoriesTable;
}