mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-24 22:48:18 +00:00
Fixed all problems related to strict types.
This commit is contained in:
@@ -132,7 +132,7 @@ class BudgetController extends Controller
|
||||
/*
|
||||
* Sum of expenses on this day:
|
||||
*/
|
||||
$amount = round(bcadd($amount, $sum), 2);
|
||||
$amount = round(bcadd(strval($amount), $sum), 2);
|
||||
$entries->push([clone $start, $amount]);
|
||||
$start->addDay();
|
||||
}
|
||||
|
Reference in New Issue
Block a user