mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-18 10:16:49 +00:00
Fix assignment of array variables
This commit is contained in:
@@ -200,8 +200,8 @@ class MassController extends Controller
|
||||
'what' => $what,
|
||||
'description' => $request->get('description')[$journal->id],
|
||||
'source_account_id' => intval($sourceAccountId),
|
||||
'source_account_name' => intval($destAccountId),
|
||||
'destination_account_id' => $sourceAccountName,
|
||||
'source_account_name' => $sourceAccountName,
|
||||
'destination_account_id' => intval($destAccountId),
|
||||
'destination_account_name' => $destAccountName,
|
||||
'amount' => round($request->get('amount')[$journal->id], 4),
|
||||
'user' => auth()->user()->id,
|
||||
|
Reference in New Issue
Block a user