Comma/Decimal point
Forum rules
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support
Comma/Decimal point
================
Last edited by TheMathematics on 09 Aug 2015, 08:24, edited 1 time in total.
Comma/Decimal point
within the includes functions file you want to change all that are like this
to like this
Code: Select all
round($forum_goals_posts_percent)
Code: Select all
round($forum_goals_posts_percent, 2)
Comma/Decimal point
Try instead
Code: Select all
number_format($forum_goals_posts_percent, 2, '.', '');