This commit is contained in:
James Cole
2017-10-19 18:08:50 +02:00
parent 783f587a8a
commit eec076c745
8 changed files with 21 additions and 21 deletions

View File

@@ -168,7 +168,7 @@ class TransactionController extends Controller
$events = $tasker->getPiggyBankEvents($journal);
$transactions = $tasker->getTransactionsOverview($journal);
$what = strtolower($journal->transaction_type_type ?? $journal->transactionType->type);
$subTitle = trans('firefly.' . $what) . ' "' . e($journal->description) . '"';
$subTitle = trans('firefly.' . $what) . ' "' . $journal->description . '"';
return view('transactions.show', compact('journal', 'events', 'subTitle', 'what', 'transactions', 'linkTypes', 'links'));