This commit is contained in:
James Cole
2026-02-08 06:22:40 +01:00
parent 154abf1fc0
commit 6944001887
2 changed files with 7 additions and 2 deletions

View File

@@ -74,8 +74,8 @@ class IndexController extends Controller
$this->cleanupObjectGroups();
$this->repository->correctOrder();
$this->repository->correctTransfers();
$start = session('start');
$end = session('end');
$start = session('start')->clone();
$end = session('end')->clone();
$viewRange = Preferences::get('viewRange', '1M')->data;
// give the end some extra space when the user has last7, last30 or last90.

View File

@@ -3,6 +3,11 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
## v6.4.18
### Fixed
- #11671
## v6.4.17 - 2026-02-06
### Added