This commit is contained in:
Sander Dorigo
2025-10-07 10:06:54 +02:00
parent 5ba29cdacd
commit 651e11ed1c
3 changed files with 6 additions and 0 deletions

View File

@@ -89,6 +89,8 @@ class ShowController extends Controller
// #11007 go to the end of the previous day.
$this->parameters->set('start', $this->parameters->get('start')?->subSecond());
// #11018 also end of the day.
$this->parameters->set('end', $this->parameters->get('end')?->endOfDay());
// enrich
/** @var User $admin */
@@ -130,6 +132,8 @@ class ShowController extends Controller
// #11007 go to the end of the previous day.
$this->parameters->set('start', $this->parameters->get('start')?->subSecond());
// #11018 also end of the day.
$this->parameters->set('end', $this->parameters->get('end')?->endOfDay());
// enrich
/** @var User $admin */

View File

@@ -102,6 +102,7 @@ class ListController extends Controller
// #11007 go to the end of the previous day.
$this->parameters->set('start', $this->parameters->get('start')?->subSecond());
// #11018 also end of the day.
$this->parameters->set('end', $this->parameters->get('end')?->endOfDay());
// enrich

View File

@@ -12,6 +12,7 @@ Everything from v6.4.1, plus:
- [Issue 11015](https://github.com/firefly-iii/firefly-iii/issues/11015) (Call to a member function subSecond() on null when viewing accounts) reported by @sirgio145
- [Issue 11016](https://github.com/firefly-iii/firefly-iii/issues/11016) (Undefined array key 1 when viewing subscriptions) reported by @anuneo
- #11018
## 6.4.1 - 2025-10-07