mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Fix for issue #123
This commit is contained in:
parent
d1329be2fa
commit
791d12fbb4
@ -64,6 +64,7 @@ class Authenticate
|
|||||||
Carbon::setLocale($pref->data);
|
Carbon::setLocale($pref->data);
|
||||||
|
|
||||||
setlocale(LC_TIME, Config::get('firefly.locales.' . $pref->data));
|
setlocale(LC_TIME, Config::get('firefly.locales.' . $pref->data));
|
||||||
|
setlocale(LC_MONETARY, Config::get('firefly.locales.' . $pref->data));
|
||||||
|
|
||||||
return $next($request);
|
return $next($request);
|
||||||
}
|
}
|
||||||
|
@ -60,7 +60,7 @@ class Amount
|
|||||||
{
|
{
|
||||||
$amount = floatval($amount);
|
$amount = floatval($amount);
|
||||||
$amount = round($amount, 2);
|
$amount = round($amount, 2);
|
||||||
$string = number_format($amount, 2, ',', '.');
|
$string = money_format('%!.2n', $amount);
|
||||||
|
|
||||||
if ($coloured === true) {
|
if ($coloured === true) {
|
||||||
if ($amount === 0.0) {
|
if ($amount === 0.0) {
|
||||||
|
Loading…
Reference in New Issue
Block a user