View Single Post
Posts: 1,808 | Thanked: 4,272 times | Joined on Feb 2011 @ Germany
#970
Bug report

In http://neo900.org/#donate I originally saw EUR 2860. I just donated EUR 200 and http://shop.goldelico.com/campaign/9603.php correctly reports EUR 3060 now.

However in http://neo900.org/#donate I see EUR 3600.

This:
Code:
valS = val%1000 + ((val%1000 < 100) ? "0" : "") + ((val%1000 < 10) ? "0" : "");
Looks very buggy. I would simply remove the space, i.e. valS = "" + val and let it be. After all, a number is a number is a number..
 

The Following 2 Users Say Thank You to reinob For This Useful Post: