smarty math returns comma instead of point

1.9k views Asked by At

doing this opperation in Smarty

{math equation=1.1+0.7 format="%.2f"}

I get a result with a comma separated decimal of 1,80

No idea of how to get a 1.80 value.

Thnx so much.

1

There are 1 answers

0
SauronZ On BEST ANSWER

The only solution i have found is to replace the comma with a poin.

math|replace:",":"."

Hope it helps someone.