Fix data calculations for values above 1000

This commit is contained in:
Brian Miyaji
2014-07-27 03:35:08 +10:00
parent e3396a2c2d
commit 34609475ca
3 changed files with 3 additions and 3 deletions

View File

@@ -295,7 +295,7 @@ class SP_Player_List extends SP_Custom_Post {
if ( $adjustment != 0 ):
$placeholder += sp_array_value( $adjustment, $stat->post_name, 0 );
$placeholder = number_format( $placeholder, $stat->precision );
$placeholder = number_format( $placeholder, $stat->precision, '', '' );
endif;
endif;