Fix broken product edit due to wrong field being called

This commit is contained in:
johnnyq
2025-02-22 13:15:15 -05:00
parent 5d18e85d62
commit 58a8f08bd2
2 changed files with 6 additions and 1 deletions

View File

@@ -11,7 +11,7 @@ $product_name = nullable_htmlentities($row['product_name']);
$product_description = nullable_htmlentities($row['product_description']);
$product_price = floatval($row['product_price']);
$product_created_at = nullable_htmlentities($row['product_created_at']);
$category_id = intval($row['category_id']);
$category_id = intval($row['product_category_id']);
$product_tax_id = intval($row['product_tax_id']);
// Generate the HTML form content using output buffering.