You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I currently get errors in validating the XML file, because sprintf generates floating point numbers for each amount value with comma as decimal point (in my environment).
I think this:
sprintf("%01.2f", ($amount / 100));
Sould be replaced with:
sprintf("%01.2F", ($amount / 100));
...in SepaFileBlock.php
The text was updated successfully, but these errors were encountered:
I currently get errors in validating the XML file, because sprintf generates floating point numbers for each amount value with comma as decimal point (in my environment).
I think this:
sprintf("%01.2f", ($amount / 100));
Sould be replaced with:
sprintf("%01.2F", ($amount / 100));
...in SepaFileBlock.php
The text was updated successfully, but these errors were encountered: