mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-10 23:45:48 -06:00
Fix display bug
This commit is contained in:
parent
d79866f115
commit
db1a60b6df
@ -192,8 +192,7 @@ class Transaction extends Twig_Extension
|
||||
// name is present in object, use that one:
|
||||
if (bccomp($transaction->transaction_amount, '0') === -1 && !is_null($transaction->opposing_account_id)) {
|
||||
|
||||
$name = intval($transaction->opposing_account_encrypted) === 1 ? Crypt::decrypt($transaction->opposing_account_name)
|
||||
: $transaction->opposing_account_name;
|
||||
$name = $transaction->opposing_account_name;
|
||||
$id = intval($transaction->opposing_account_id);
|
||||
$type = intval($transaction->opposing_account_type);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user