I had a custom edit to the public function category() in admin>controller>catalog>product.php in v1.4.9. Now that I've upgraded to 1.5.1.3, I can't find the function that generates the category select box values for the product form.
All I changed was this from:
Code: Select all
foreach ($results as $result) {
$product_data[] = array(
'product_id' => $result['product_id'],
'name' => $result['name'],
'model' => $result['model']
);
}
Code: Select all
foreach ($results as $result) {
$product_data[] = array(
'product_id' => $result['product_id'],
'name' => $result['name'],
'model' => $result['model'],
'parent_id' => $result['parent_id']
);
}
Any help?