rounds off the amount entered per node i.e. can't add 1.50
This is due to the (int) casts that are done in the code.
We need to replace those by checks for is_numeric() or something like that.
Comments
Comment #1
kbahey commentedThis is due to the (int) casts that are done in the code.
We need to replace those by checks for is_numeric() or something like that.