Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
464 views
in Q2A Core by

 

Q2A version: v1.5
by
This was posted a while ago, but has some created a easy solution like NoahY mentioned in b)
or like it´s mention here:
http://www.question2answer.org/qa/27257/easy-way-to-replace-commas-by-dots

Best would be without core hacks.

1 Answer

+1 vote
by

It's pretty hard-coded as it is now... the function being used is PHP's number_format(), which, taking only one argument, formats it wil a comma:

http://www.php.net/manual/en/function.number-format.php

So, either

a) go through the code changing this function,

b) create a custom layer with preg_replace() on things like  $this->content['ranking']['items'][]

c) ask nicely for the points format to be more flexible in a later release.

...