mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-19 19:01:39 +00:00
Fixed some bugs in transaction handling. [skip ci]
This commit is contained in:
@@ -133,14 +133,9 @@ class TransactionController extends BaseController
|
||||
*
|
||||
* @return $this|\Illuminate\View\View
|
||||
*/
|
||||
public function show($journalId)
|
||||
public function show(TransactionJournal $journal)
|
||||
{
|
||||
// $journal = $this->_journal->find($journalId);
|
||||
// if ($journal) {
|
||||
// return View::make('transactions.show')->with('journal', $journal);
|
||||
// }
|
||||
//
|
||||
// return View::make('error')->with('message', 'Invalid journal');
|
||||
return View::make('transactions.show')->with('journal', $journal);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user