Donate procent problem

Modifications for phpBB3.
Try the Mods here and share Your own Mods
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

Donate procent problem

Post by Solidjeuh »

I just installed this mod, Works great!
but...

Image

Is this normal?

Donate procent problem

Post by Stoker »

Yes, it is.
But we can easily make the number nice :)

Open donate.php
Find: 'DONATION_GOAL_NUMBER' => $donation_goal_number,
Replace with: 'DONATION_GOAL_NUMBER' => number_format($donation_goal_number),

Open index.php
Find: 'DONATION_GOAL_NUMBER' => $donation_goal_number,
Replace with: 'DONATION_GOAL_NUMBER' => number_format($donation_goal_number),

Donate procent problem

Post by doktornotor »

What is wrong with that? Now you know exactly how much is still remaining! :lol:

Seriously, looks like the $donation_goal_number could do with some rounding/decimal places limiting as suggested above. :)

Donate procent problem

Post by Solidjeuh »

Thank you Stoker! looks much better now! :D