mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-15 08:35:00 +00:00
Fix #11015
This commit is contained in:
@@ -88,7 +88,7 @@ class ShowController extends Controller
|
|||||||
$accounts = $collection->slice(($this->parameters->get('page') - 1) * $params['limit'], $params['limit']);
|
$accounts = $collection->slice(($this->parameters->get('page') - 1) * $params['limit'], $params['limit']);
|
||||||
|
|
||||||
// #11007 go to the end of the previous day.
|
// #11007 go to the end of the previous day.
|
||||||
$this->parameters->set('start', $this->parameters->get('start')->subSecond());
|
$this->parameters->set('start', $this->parameters->get('start')?->subSecond());
|
||||||
|
|
||||||
// enrich
|
// enrich
|
||||||
/** @var User $admin */
|
/** @var User $admin */
|
||||||
@@ -129,7 +129,7 @@ class ShowController extends Controller
|
|||||||
$manager = $this->getManager();
|
$manager = $this->getManager();
|
||||||
|
|
||||||
// #11007 go to the end of the previous day.
|
// #11007 go to the end of the previous day.
|
||||||
$this->parameters->set('start', $this->parameters->get('start')->subSecond());
|
$this->parameters->set('start', $this->parameters->get('start')?->subSecond());
|
||||||
|
|
||||||
// enrich
|
// enrich
|
||||||
/** @var User $admin */
|
/** @var User $admin */
|
||||||
|
@@ -101,7 +101,7 @@ class ListController extends Controller
|
|||||||
$accounts = $collection->slice(($this->parameters->get('page') - 1) * $pageSize, $pageSize);
|
$accounts = $collection->slice(($this->parameters->get('page') - 1) * $pageSize, $pageSize);
|
||||||
|
|
||||||
// #11007 go to the end of the previous day.
|
// #11007 go to the end of the previous day.
|
||||||
$this->parameters->set('start', $this->parameters->get('start')->subSecond());
|
$this->parameters->set('start', $this->parameters->get('start')?->subSecond());
|
||||||
|
|
||||||
// enrich
|
// enrich
|
||||||
/** @var User $admin */
|
/** @var User $admin */
|
||||||
|
Reference in New Issue
Block a user