Quick bug fix: missing class.

This commit is contained in:
James Cole
2016-11-06 15:01:04 +01:00
parent 7612f1f91a
commit 0c8a1b51e9
2 changed files with 2 additions and 2 deletions

View File

@@ -61,7 +61,7 @@ class TransactionController extends Controller
$subTitleIcon = config('firefly.transactionIconsByWhat.' . $what); $subTitleIcon = config('firefly.transactionIconsByWhat.' . $what);
$types = config('firefly.transactionTypesByWhat.' . $what); $types = config('firefly.transactionTypesByWhat.' . $what);
$subTitle = trans('firefly.title_' . $what); $subTitle = trans('firefly.title_' . $what);
$page = intval(Input::get('page')) === 0 ? 1 : intval(Input::get('page')); $page = intval($request->get('page')) === 0 ? 1 : intval($request->get('page'));
$collector = new JournalCollector(auth()->user()); $collector = new JournalCollector(auth()->user());
$collector->setTypes($types)->setLimit($pageSize)->setPage($page)->setAllAssetAccounts(); $collector->setTypes($types)->setLimit($pageSize)->setPage($page)->setAllAssetAccounts();

2
composer.lock generated
View File

@@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
"This file is @generated automatically" "This file is @generated automatically"
], ],
"hash": "cc3d23620e727ee1f4741b2e83f8685f", "hash": "12c9e9450c824d192b8c049989188b8e",
"content-hash": "473d3c681e5c41989e9dced651a939df", "content-hash": "473d3c681e5c41989e9dced651a939df",
"packages": [ "packages": [
{ {