Quote:
Originally Posted by dede1
|
Does the German number system go by base 10 because the number is right just the decimal place is off by five places which is strange.
I would probably tweak it with a file mod since its the decimal places off.
open member.php
find:
PHP Code:
$_activeperc = round ( ( ( $_activeposts / $userinfo['posts'] ) * 100 ), 2 ) . "%" ;
replace with:
PHP Code:
$_activeperc = round ( ( ( $_activeposts / $userinfo['posts'] ) * 0.01 ), 2 ) . "%" ;
See if that helps the situation.
Regards,
g-force2k2