[Dashboard] Fixes issue where Sunday QSOs are missing from the map

Include QSOs on Sunday of the current week
这个提交包含在:
Peter Goodhall 2020-10-05 13:40:09 +01:00 提交者 GitHub
当前提交 d6a46e05f2
找不到此签名对应的密钥
GPG 密钥 ID: 4AEE18F83AFDEB23

查看文件

@ -68,7 +68,7 @@ class Dashboard extends CI_Controller {
$raw = strtotime('Monday last week'); $raw = strtotime('Monday last week');
$mon = date('Y-m-d', $raw); $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); $qsos = $this->logbook_model->map_week_qsos($mon, $sun);