diff -r 92afe6b59610 -r ffe0416614b3 www/includes/db_inventory_yeasts.php --- a/www/includes/db_inventory_yeasts.php Sun Mar 08 17:43:55 2020 +0100 +++ b/www/includes/db_inventory_yeasts.php Sun Mar 08 19:52:39 2020 +0100 @@ -26,6 +26,7 @@ $sql .= "', form='" . array_search($_POST['form'], $yeastform); $sql .= "', laboratory='" . mysqli_real_escape_string($connect, $_POST['laboratory']); $sql .= "', product_id='" . mysqli_real_escape_string($connect, $_POST['product_id']); + $sql .= "', short_desc='" . mysqli_real_escape_string($connect, $_POST['short_desc']); $sql .= "', min_temperature='" . $_POST['min_temperature']; $sql .= "', max_temperature='" . $_POST['max_temperature']; $sql .= "', flocculation='" . $_POST['flocculation']; @@ -96,6 +97,7 @@ 'form' => $yeastform[$row['form']], 'laboratory' => $row['laboratory'], 'product_id' => $row['product_id'], + 'short_desc' => $row['short_desc'], 'min_temperature' => $row['min_temperature'], 'max_temperature' => $row['max_temperature'], 'flocculation' => $row['flocculation'],