From cf4efcced015a037df79da781e7ab9073c09569d Mon Sep 17 00:00:00 2001 From: Andreas Brain Date: Sun, 4 Oct 2020 15:23:13 +0200 Subject: [PATCH] Include QSOs on Sunday of the current week, fixes #639 --- application/controllers/Dashboard.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/controllers/Dashboard.php b/application/controllers/Dashboard.php index 6c45dcab..f97865cd 100644 --- a/application/controllers/Dashboard.php +++ b/application/controllers/Dashboard.php @@ -68,7 +68,7 @@ class Dashboard extends CI_Controller { $raw = strtotime('Monday last week'); $mon = date('Y-m-d', $raw); - $sun = date('Y-m-d', strtotime('Sunday this week')); + $sun = date('Y-m-d', strtotime('Monday next week')); $qsos = $this->logbook_model->map_week_qsos($mon, $sun);