Merge branch 'develop' of github.com:firefly-iii/firefly-iii into develop

This commit is contained in:
James Cole
2019-08-16 05:22:24 +02:00

View File

@@ -1069,7 +1069,7 @@ class BudgetRepository implements BudgetRepositoryInterface
$query->where('start_date', '>=', $start->format('Y-m-d H:i:s'));
}
if (null !== $end) {
$query->where('emd_date', '<=', $end->format('Y-m-d H:i:s'));
$query->where('end_date', '<=', $end->format('Y-m-d H:i:s'));
}
return $query->get();