Skip to content

Commit

Permalink
[8b44679] - Fix a bug incorrectly marking materials as banned in a fo…
Browse files Browse the repository at this point in the history
…rmula
  • Loading branch information
JB committed Oct 5, 2024
1 parent 8b44679 commit 9eef1c5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# CHANGELOG
### Version 11.6
- Fix a bug incorrectly marking materials as banned in a formula
- Fix a typo in db schema creation for new installations
- Minor updates in sys-upgrade

Expand Down
2 changes: 1 addition & 1 deletion core/full_formula_data.php
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@
}

$r['usage_regulator'] = 'PV';
$r['ingredient']['classification'] = (int)($ing_q['classification'] ?? 1);
$r['ingredient']['classification'] = (int)isset($ing_q['classification']) ?: 1;
}
if($ing_q['byPassIFRA'] === '0') {
$r['isIFRAbyPass'] = (int)0;
Expand Down
1 change: 1 addition & 0 deletions releasenotes.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
Whats New in v11.6
--------------------------
- Fix a bug incorrectly marking materials as banned in a formula
- Fix a bug preventing db creation for new installations
- This release may include more changes, for full details please refer to the CHANGELOG

0 comments on commit 9eef1c5

Please sign in to comment.