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
Post
by Solidjeuh » 23 Nov 2011, 18:43
I just installed this mod, Works great!
but...
Is this normal?
Post
by Stoker » 23 Nov 2011, 18:50
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),
Post
by doktornotor » 23 Nov 2011, 18:52
What is wrong with that? Now you know
exactly how much is still remaining!
Seriously, looks like the
$donation_goal_number
could do with some rounding/decimal places limiting as suggested above.
Post
by Solidjeuh » 23 Nov 2011, 18:55
Thank you Stoker! looks much better now!