coral-erm / coral

CORAL ERM main repository
http://coral-erm.org/
Other
52 stars 65 forks source link

Protect against non-numeric taxRate value #765

Closed spaceisntsyntax closed 7 months ago

spaceisntsyntax commented 7 months ago

Newer MySQL/MariaDB versions are more strict about type restrictions, and do not like to coerce an empty string to NULL on a numeric column type. Here we make sure that non-numeric user input is dropped, and NULL is stored when a number isn't passed to the input form.

andyp-uk commented 7 months ago

Fix looks good.