Template improved, old lost code removed, some fixes
[mailer.git] / inc / modules / member / what-points.php
index f5bb460ff1444c8ff45793d58af0370de06e7230..67aa5913f994f0ef8d088b865bc01727ca9faf9b 100644 (file)
@@ -157,7 +157,7 @@ if (isExtensionInstalledAndNewer('user', '0.1.2')) {
 if ($totalLocked == '0') $totalLocked = '0.00000';
 
 // Remember several values in constants
-$content['sum']   = translateComma($totalPoints - getUserData('used_points'));
+$content['sum']   = translateComma($totalPoints - getUserData('used_points'), false);
 $content['tref']  = translateComma($totalReferals);
 $content['tlock'] = translateComma($totalLocked);
 
@@ -184,7 +184,7 @@ if ((isExtensionInstalledAndNewer('bonus', '0.2.2')) && (isExtensionActive('bonu
        } // END - if
 
        // Total bonus points
-       $content['ttotal'] = translateComma($content['turbo'] + $content['login'] + $content['ref'] + $content['order'] + $content['stats']);
+       $content['ttotal'] = translateComma($content['turbo'] + $content['login'] + $content['ref'] + $content['order'] + $content['stats'], false);
 
        // Translate more data
        $content['turbo'] = translateComma($content['turbo']);